Kernel: Reverse global accessor removal.

This commit is contained in:
Fernando Sahmkow
2019-10-12 10:21:33 -04:00
committed by FernandoS27
parent 3073615dbc
commit c32520ceb7
4 changed files with 9 additions and 23 deletions

View File

@ -95,7 +95,7 @@ void WaitObject::WakeupWaitingThread(SharedPtr<Thread> thread) {
}
if (resume) {
thread->ResumeFromWait();
kernel.System().PrepareReschedule(thread->GetProcessorID());
Core::System::GetInstance().PrepareReschedule(thread->GetProcessorID());
}
}