summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-03-29 02:42:24 +0100
committerGitHub <noreply@github.com>2019-03-29 02:42:24 +0100
commitf770c17d011e76cb268df5ba5d687609a0f514d4 (patch)
tree95638bae93a71b58d4c58ff5adb03d1256b3cb8a /src/core/hle/kernel/thread.h
parentMerge pull request #2265 from FernandoS27/multilevelqueue (diff)
parentFix small bug that kept a thread as a condvar thread after being signalled. (diff)
downloadyuzu-f770c17d011e76cb268df5ba5d687609a0f514d4.tar
yuzu-f770c17d011e76cb268df5ba5d687609a0f514d4.tar.gz
yuzu-f770c17d011e76cb268df5ba5d687609a0f514d4.tar.bz2
yuzu-f770c17d011e76cb268df5ba5d687609a0f514d4.tar.lz
yuzu-f770c17d011e76cb268df5ba5d687609a0f514d4.tar.xz
yuzu-f770c17d011e76cb268df5ba5d687609a0f514d4.tar.zst
yuzu-f770c17d011e76cb268df5ba5d687609a0f514d4.zip
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index faad5f391..9c684758c 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -51,7 +51,8 @@ enum class ThreadStatus {
WaitIPC, ///< Waiting for the reply from an IPC request
WaitSynchAny, ///< Waiting due to WaitSynch1 or WaitSynchN with wait_all = false
WaitSynchAll, ///< Waiting due to WaitSynchronizationN with wait_all = true
- WaitMutex, ///< Waiting due to an ArbitrateLock/WaitProcessWideKey svc
+ WaitMutex, ///< Waiting due to an ArbitrateLock svc
+ WaitCondVar, ///< Waiting due to an WaitProcessWideKey svc
WaitArb, ///< Waiting due to a SignalToAddress/WaitForAddress svc
Dormant, ///< Created but not yet made ready
Dead ///< Run to completion, or forcefully terminated