diff options
| author | 2018-03-18 22:25:09 -0400 | |
|---|---|---|
| committer | 2018-03-18 22:25:09 -0400 | |
| commit | 2dc3a56e9602e0bfba9bfc19f31f0433d1564ccc (patch) | |
| tree | 6e49476a6c0c1a333090a01afa7a4fbfd11b8888 /src/core/hle/kernel/thread.h | |
| parent | Merge pull request #249 from Subv/macro_E1A (diff) | |
| parent | vi: Remove DequeueBuffer and wait until next available buffer. (diff) | |
| download | yuzu-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.h | 2 |
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 { | |||
| 38 | enum ThreadStatus { | 38 | enum 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 |