Merge pull request #9158 from liamwhite/single-bore

k_thread: fix single core
This commit is contained in:
Fernando S
2022-10-31 00:58:07 +01:00
committed by GitHub

View File

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