summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-12-28 00:44:42 +0100
committerSubv <subv2112@gmail.com>2015-12-28 00:44:42 +0100
commit29032ce9b6de56de60c146832bd88b06062fccac (patch)
tree5cdaf69f5ace1bef60152b77a1616ff27bf71221 /src/core/hle/kernel/thread.cpp
parentMerge pull request #1287 from lioncash/memory (diff)
downloadyuzu-29032ce9b6de56de60c146832bd88b06062fccac.tar
yuzu-29032ce9b6de56de60c146832bd88b06062fccac.tar.gz
yuzu-29032ce9b6de56de60c146832bd88b06062fccac.tar.bz2
yuzu-29032ce9b6de56de60c146832bd88b06062fccac.tar.lz
yuzu-29032ce9b6de56de60c146832bd88b06062fccac.tar.xz
yuzu-29032ce9b6de56de60c146832bd88b06062fccac.tar.zst
yuzu-29032ce9b6de56de60c146832bd88b06062fccac.zip
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
-rw-r--r--src/core/hle/kernel/thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index c08fc1c7a..bf32f653d 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -300,7 +300,7 @@ static void ThreadWakeupCallback(u64 thread_handle, int cycles_late) {
thread->waitsynch_waited = false;
- if (thread->status == THREADSTATUS_WAIT_SYNCH) {
+ if (thread->status == THREADSTATUS_WAIT_SYNCH || thread->status == THREADSTATUS_WAIT_ARB) {
thread->SetWaitSynchronizationResult(ResultCode(ErrorDescription::Timeout, ErrorModule::OS,
ErrorSummary::StatusChanged, ErrorLevel::Info));