summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-03-18 22:25:09 -0400
committerGravatar GitHub2018-03-18 22:25:09 -0400
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.gz
yuzu-2dc3a56e9602e0bfba9bfc19f31f0433d1564ccc.tar.xz
yuzu-2dc3a56e9602e0bfba9bfc19f31f0433d1564ccc.zip
Merge pull request #250 from bunnei/buffer-dequeue-wait
vi: TransactParcel DequeueBuffer should wait current thread
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 {
38enum ThreadStatus { 38enum ThreadStatus {
39 THREADSTATUS_RUNNING, ///< Currently running 39 THREADSTATUS_RUNNING, ///< Currently running
40 THREADSTATUS_READY, ///< Ready to run 40 THREADSTATUS_READY, ///< Ready to run
41 THREADSTATUS_WAIT_ARB, ///< Waiting on an address arbiter 41 THREADSTATUS_WAIT_HLE_EVENT, ///< Waiting for hle event to finish
42 THREADSTATUS_WAIT_SLEEP, ///< Waiting due to a SleepThread SVC 42 THREADSTATUS_WAIT_SLEEP, ///< Waiting due to a SleepThread SVC
43 THREADSTATUS_WAIT_IPC, ///< Waiting for the reply from an IPC request 43 THREADSTATUS_WAIT_IPC, ///< Waiting for the reply from an IPC request
44 THREADSTATUS_WAIT_SYNCH_ANY, ///< Waiting due to WaitSynch1 or WaitSynchN with wait_all = false 44 THREADSTATUS_WAIT_SYNCH_ANY, ///< Waiting due to WaitSynch1 or WaitSynchN with wait_all = false