Compare commits

...

1 Commits

Author SHA1 Message Date
Liam
1d731dd1ff kernel: fix single core 2023-12-08 20:31:18 -05:00

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