summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-03-19 03:25:09 +0100
committerGitHub <noreply@github.com>2018-03-19 03:25:09 +0100
commit2dc3a56e9602e0bfba9bfc19f31f0433d1564ccc (patch)
tree6e49476a6c0c1a333090a01afa7a4fbfd11b8888 /src/core/hle/kernel/thread.h
parentMerge pull request #249 from Subv/macro_E1A (diff)
parentvi: Remove DequeueBuffer and wait until next available buffer. (diff)
downloadyuzu-2dc3a56e9602e0bfba9bfc19f31f0433d1564ccc.tar
yuzu-2dc3a56e9602e0bfba9bfc19f31f0433d1564ccc.tar.gz
yuzu-2dc3a56e9602e0bfba9bfc19f31f0433d1564ccc.tar.bz2
yuzu-2dc3a56e9602e0bfba9bfc19f31f0433d1564ccc.tar.lz
yuzu-2dc3a56e9602e0bfba9bfc19f31f0433d1564ccc.tar.xz
yuzu-2dc3a56e9602e0bfba9bfc19f31f0433d1564ccc.tar.zst
yuzu-2dc3a56e9602e0bfba9bfc19f31f0433d1564ccc.zip
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 4fd2fc2f8..dbf47e269 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -38,7 +38,7 @@ enum ThreadProcessorId : s32 {
enum ThreadStatus {
THREADSTATUS_RUNNING, ///< Currently running
THREADSTATUS_READY, ///< Ready to run
- THREADSTATUS_WAIT_ARB, ///< Waiting on an address arbiter
+ THREADSTATUS_WAIT_HLE_EVENT, ///< Waiting for hle event to finish
THREADSTATUS_WAIT_SLEEP, ///< Waiting due to a SleepThread SVC
THREADSTATUS_WAIT_IPC, ///< Waiting for the reply from an IPC request
THREADSTATUS_WAIT_SYNCH_ANY, ///< Waiting due to WaitSynch1 or WaitSynchN with wait_all = false