diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-07-25 12:00:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-25 12:00:31 -0400 |
commit | 591d1f1b09d2af6e432d4fb27af3321919758c0c (patch) | |
tree | 5b0efec541b5db56b7d32e6c90f1b2587c71611d /src/core/arm/arm_interface.cpp | |
parent | 5af06d14337a61d9ed1093079d13f68cbb1f5451 (diff) | |
parent | a9a83fa726b43a28f4e5a40516efd56fbf99009f (diff) |
Merge pull request #8549 from liamwhite/kscheduler-sc
kernel: use KScheduler from Mesosphere
Diffstat (limited to 'src/core/arm/arm_interface.cpp')
-rw-r--r-- | src/core/arm/arm_interface.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/arm/arm_interface.cpp b/src/core/arm/arm_interface.cpp index e72b250bec..953d964399 100644 --- a/src/core/arm/arm_interface.cpp +++ b/src/core/arm/arm_interface.cpp @@ -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; |