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

View file

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