k_thread: fix single core

This commit is contained in:
Liam 2022-10-30 18:44:29 -04:00
parent e09756b2df
commit eec3184bb0
1 changed files with 4 additions and 2 deletions

View File

@ -1185,8 +1185,10 @@ void KThread::RequestDummyThreadWait() {
}
void KThread::DummyThreadBeginWait() {
ASSERT(this->IsDummyThread());
ASSERT(!kernel.IsPhantomModeForSingleCore());
if (!this->IsDummyThread() || kernel.IsPhantomModeForSingleCore()) {
// Occurs in single core mode.
return;
}
// Block until runnable is no longer false.
dummy_thread_runnable.wait(false);