Merge pull request #12317 from liamwhite/sc-fix

kernel: fix single core
This commit is contained in:
liamwhite
2023-12-10 18:16:58 -05:00
committed by GitHub

View File

@ -139,7 +139,7 @@ void PhysicalCore::RunThread(Kernel::KThread* thread) {
} }
// Handle external interrupt sources. // Handle external interrupt sources.
if (interrupt || !m_is_single_core) { if (interrupt || m_is_single_core) {
return; return;
} }
} }