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
commit 591d1f1b09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;