StuBS
|
Thread that is executed when there is nothing to do for this core. More...
#include <idlethread.h>
Public Member Functions | |
void | action () override |
Wait for a thread to become ready and sleep in the meantime. | |
![]() | |
Thread (void *tos) | |
Constructor Initializes the context using prepareContext with the given stack space. More... | |
void | go () |
Activates the first thread on this CPU. More... | |
void | resume (Thread *next) |
Switches from the currently running thread to the next one. More... | |
virtual void | action ()=0 |
Method that contains the thread's program code. More... | |
Waitingroom * | getWaitingroom () const |
Returns the Waitingroom in which the thread is currently waiting. More... | |
void | setWaitingroom (Waitingroom *w) |
Marks the thread as waiting for an event in Waitingroom w . More... | |
Additional Inherited Members | |
![]() | |
volatile bool | kill_flag |
Marker for a dying thread. | |
![]() | |
static void | kickoff (Thread *object) |
Function to start a thread. More... | |
![]() | |
Context | context |
Context of the thread, used for saving and restoring the register values when context switching. | |
Thread that is executed when there is nothing to do for this core.
Using the IdleThread simplifies the idea of waiting and is an answer to the questions that arise once the ready queue is empty.