
Guarded interface to the Scheduler used by user applications. More...
#include <syscall/guarded_scheduler.h>
Static Public Member Functions | |
static void | ready (Thread *that) |
Include a thread in scheduling decisions. More... | |
static void | exit () |
(Self-)termination of the calling thread. More... | |
static void | kill (Thread *that) |
Kills the passed thread. More... | |
static void | resume () |
Issue a thread change. More... | |
![]() | |
static void | schedule () |
Start scheduling. More... | |
static void | ready (Thread *that) |
Include a thread in scheduling decisions. More... | |
static void | exit () |
(Self-)termination of the calling thread. More... | |
static void | kill (Thread *that) |
Kills the passed thread. More... | |
static void | resume () |
Issue a thread change. More... | |
static bool | isEmpty () |
Checks whether the ready queue is empty. More... | |
static void | block (Waitingroom *waitingroom) |
Blocks the calling thread in and enqueues the thread in the provided waitingroom. More... | |
static void | wakeup (Thread *customer) |
Wake up a sleeping thread. More... | |
![]() | |
static Thread * | active () |
Returns the co-routing currently running on the CPU calling active() More... | |
static bool | isActive (const Thread *thread, unsigned *cpu=nullptr) |
Check if thread is currently active. More... | |
static void | go (Thread *first) |
This method stores first as life pointer for this CPU and triggers the execution of first. More... | |
static void | dispatch (Thread *next) |
Updates the life pointer to next and issues a co-routine change from the old to the new life pointer. More... | |
Guarded interface to the Scheduler used by user applications.
Implements the system call interface for class Scheduler. All methods provided by this class are wrappers for the respective method from the base class, which provide additional synchronization by using the class Guarded.
|
inlinestatic |
Include a thread in scheduling decisions.
This method will register a thread for scheduling, that is, it will be appended to the ready queue and dispatched once its time has come.
that | Thread to be scheduled |
|
inlinestatic |
(Self-)termination of the calling thread.
This method can be used by a thread to exit itself. The calling thread will not be appended to the ready queue; a reschedule will be issued.
|
inlinestatic |
Kills the passed thread.
This method is used to kill the thread that. For OOStuBS, it is sufficient to remove that from the ready queue and, thereby, exclude the thread from scheduling. For MPStuBS, a simple removal is not sufficient, as the thread might currently be running on another CPU. In this case, the thread needs to be marked as dying (a flag checked by resume prior to enqueuing into the ready queue) and the executing CPU needs to be notified.
|
inlinestatic |
Issue a thread change.
This method issues the change of the currently active thread without requiring the calling thread to be aware of the other threads. Scheduling decisions are made by the scheduler himself on basis of threads currently in the ready queue. There is no need for the calling thread to make this decision. The currently active thread is appended to the end of the queue; the first thread in the queue will be activated.