1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-04-14 00:04:08 -05:00

kernel: fix single core

This commit is contained in:
Liam 2023-12-08 19:40:03 -05:00
parent 52e6b8a2d3
commit 1d731dd1ff

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;
}
}