diff options
author | Liam <byteslice@airmail.cc> | 2022-06-26 18:52:16 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-07-14 22:47:18 -0400 |
commit | 0624c880bd5af45ae9095465e079fa55458515f6 (patch) | |
tree | a8b9f3adf516af30cad021fc32f8669426946cd5 /src/core/arm/arm_interface.cpp | |
parent | 53fb4a78a3ab73b4233464b74be5fcf53b0424d0 (diff) |
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 cef79b245a..cdf388fb9b 100644 --- a/src/core/arm/arm_interface.cpp +++ b/src/core/arm/arm_interface.cpp @@ -155,9 +155,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; |