diff options
author | bunnei <bunneidev@gmail.com> | 2018-02-18 20:11:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-18 20:11:34 +0100 |
commit | ec39c9eb321e88697448091b95842adb18cb485f (patch) | |
tree | 49cd0eb8264d5ac6eb47179b41c83848f25078a9 /src/core/hle/kernel/thread.cpp | |
parent | Merge pull request #200 from Subv/bufferproducerfence (diff) | |
parent | Kernel/IPC: Add a small delay after each SyncRequest to prevent thread starvation. (diff) | |
download | yuzu-ec39c9eb321e88697448091b95842adb18cb485f.tar yuzu-ec39c9eb321e88697448091b95842adb18cb485f.tar.gz yuzu-ec39c9eb321e88697448091b95842adb18cb485f.tar.bz2 yuzu-ec39c9eb321e88697448091b95842adb18cb485f.tar.lz yuzu-ec39c9eb321e88697448091b95842adb18cb485f.tar.xz yuzu-ec39c9eb321e88697448091b95842adb18cb485f.tar.zst yuzu-ec39c9eb321e88697448091b95842adb18cb485f.zip |
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
-rw-r--r-- | src/core/hle/kernel/thread.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 1a33cc6cb..130b669a0 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp @@ -284,6 +284,7 @@ void Thread::ResumeFromWait() { case THREADSTATUS_WAIT_SYNCH_ANY: case THREADSTATUS_WAIT_ARB: case THREADSTATUS_WAIT_SLEEP: + case THREADSTATUS_WAIT_IPC: break; case THREADSTATUS_READY: |