Merge pull request #8549 from liamwhite/kscheduler-sc

kernel: use KScheduler from Mesosphere
This commit is contained in:
Morph
2022-07-25 12:00:31 -04:00
committed by GitHub
13 changed files with 609 additions and 606 deletions

View File

@ -154,9 +154,10 @@ void ARM_Interface::Run() {
break;
}
// Handle syscalls and scheduling (this may change the current thread)
// Handle syscalls and scheduling (this may change the current thread/core)
if (Has(hr, svc_call)) {
Kernel::Svc::Call(system, GetSvcNumber());
break;
}
if (Has(hr, break_loop) || !uses_wall_clock) {
break;