Kernel: Reverse global accessor removal.

This commit is contained in:
Fernando Sahmkow 2019-10-12 10:21:33 -04:00 committed by FernandoS27
parent a88238d68d
commit ac9dd91f1e
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());
}
}