mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-04 19:19:59 +00:00
k_thread: fix single core
This commit is contained in:
parent
e09756b2df
commit
eec3184bb0
1 changed files with 4 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue