27 return (*readyQueue->
begin());
This class implements the ready queue and the wait queue. Those queues contain processes ready to run...
std::shared_ptr< Process > selectNextTask(Queue *readyQueue, std::shared_ptr< Process > running, unsigned int)
select the best task to run at this point.
std::string getName()
returns the name of that discipline
bool preempts(TriggeringEvent trigger)
returns true if the argument is a scheduling trigger for this specific discipline ...