diff options
| author | 2018-06-21 04:07:03 -0600 | |
|---|---|---|
| committer | 2018-06-21 04:10:11 -0600 | |
| commit | 4f81bc4e1bd12e4df7410c6790ba818d8dbba9c0 (patch) | |
| tree | 597b478c20184a6c40692b4d7c695c8b1cac362e /src/core/hle/kernel/thread.h | |
| parent | Kernel/Arbiters: Implement WaitForAddress (diff) | |
| download | yuzu-4f81bc4e1bd12e4df7410c6790ba818d8dbba9c0.tar.gz yuzu-4f81bc4e1bd12e4df7410c6790ba818d8dbba9c0.tar.xz yuzu-4f81bc4e1bd12e4df7410c6790ba818d8dbba9c0.zip | |
Kernel/Arbiters: Mostly implement SignalToAddress
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 79e5d6e5c..0a76bd222 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -230,8 +230,10 @@ public: | |||
| 230 | VAddr condvar_wait_address; | 230 | VAddr condvar_wait_address; |
| 231 | VAddr mutex_wait_address; ///< If waiting on a Mutex, this is the mutex address | 231 | VAddr mutex_wait_address; ///< If waiting on a Mutex, this is the mutex address |
| 232 | Handle wait_handle; ///< The handle used to wait for the mutex. | 232 | Handle wait_handle; ///< The handle used to wait for the mutex. |
| 233 | VAddr arb_wait_address; ///< If waiting for an AddressArbiter, this is the address | 233 | |
| 234 | ResultCode arb_wait_result; ///< If waiting for an AddressArbiter, this is the result that will be returned. | 234 | // If waiting for an AddressArbiter, this is the address being waited on. |
| 235 | VAddr arb_wait_address; | ||
| 236 | ResultCode arb_wait_result{RESULT_SUCCESS}; ///< Result returned when done waiting on AddressArbiter. | ||
| 235 | 237 | ||
| 236 | std::string name; | 238 | std::string name; |
| 237 | 239 | ||