diff options
| author | bunnei <bunneidev@gmail.com> | 2018-03-18 19:45:20 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-03-18 20:56:32 -0400 |
| commit | e353b9fb3d374740bab24bffebd7f3a81ce062a8 (patch) | |
| tree | 689b9b19467849c2f68238b71774f039e0bd458a /src/core/hle/kernel/thread.h | |
| parent | 6317a0b2ca5cfd5997d60522554d6f1f6b94a979 (diff) | |
thread: Add THREADSTATUS_WAIT_HLE_EVENT, remove THREADSTATUS_WAIT_ARB.
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 { 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 |
