mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 15:15:46 +00:00
k_thread: fix single core
This commit is contained in:
parent
c6b58636b2
commit
e9589c859d
1 changed files with 4 additions and 2 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue