mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-10 23:09:18 +00:00
Implement GetIdle function in Custom scheduler
This commit is contained in:
@ -252,6 +252,11 @@ namespace Tasking::Scheduler
|
||||
this->ProcessList.remove(pcb);
|
||||
}
|
||||
|
||||
std::pair<PCB *, TCB *> Custom::GetIdle()
|
||||
{
|
||||
return std::make_pair(IdleProcess, IdleThread);
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------- */
|
||||
|
||||
nsa void Custom::OneShot(int TimeSlice)
|
||||
|
Reference in New Issue
Block a user