[Kernel] Implement ClearEvent, stub WaitSynchronization1

This commit is contained in:
wheremyfoodat 2022-09-20 19:02:52 +03:00
parent 6bfe321777
commit d3a2591d19
5 changed files with 37 additions and 1 deletions

View file

@ -92,5 +92,5 @@ void Kernel::sleepThreadOnArbiter(u32 waitingAddress) {
t.status = ThreadStatus::WaitArbiter;
t.waitingAddress = waitingAddress;
switchThread(1);
switchThread(1); // TODO: Properly change threads
}