summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-03-14 00:55:04 +0100
committerFernandoS27 <fsahmkow27@gmail.com>2019-03-20 01:32:47 +0100
commitacbdfdae644ad56ca94318758f57e406350586ce (patch)
tree472bd8e0001d74d59cce42ec47a5f01fe6910990 /src/core/hle/kernel/thread.h
parentSmall fixes to address_arbiter to better match the IDB. (diff)
downloadyuzu-acbdfdae644ad56ca94318758f57e406350586ce.tar
yuzu-acbdfdae644ad56ca94318758f57e406350586ce.tar.gz
yuzu-acbdfdae644ad56ca94318758f57e406350586ce.tar.bz2
yuzu-acbdfdae644ad56ca94318758f57e406350586ce.tar.lz
yuzu-acbdfdae644ad56ca94318758f57e406350586ce.tar.xz
yuzu-acbdfdae644ad56ca94318758f57e406350586ce.tar.zst
yuzu-acbdfdae644ad56ca94318758f57e406350586ce.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