summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar Michael Scire2018-06-21 01:40:29 -0600
committerGravatar Michael Scire2018-06-21 01:40:29 -0600
commit9d71ce88cee58d2e171ec5ed82daf075112fb422 (patch)
tree3e8dfaf638c2e63124295d2c8ed1b20c6060c847 /src/core/hle/kernel/thread.h
parentKernel/Arbiters: Add stubs for 4.x SignalToAddress/WaitForAddres SVCs. (diff)
downloadyuzu-9d71ce88cee58d2e171ec5ed82daf075112fb422.tar.gz
yuzu-9d71ce88cee58d2e171ec5ed82daf075112fb422.tar.xz
yuzu-9d71ce88cee58d2e171ec5ed82daf075112fb422.zip
Kernel/Arbiters: Implement WaitForAddress
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 023c9dbe9..79e5d6e5c 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -228,8 +228,10 @@ public:
228 228
229 // If waiting on a ConditionVariable, this is the ConditionVariable address 229 // If waiting on a ConditionVariable, this is the ConditionVariable address
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
234 ResultCode arb_wait_result; ///< If waiting for an AddressArbiter, this is the result that will be returned.
233 235
234 std::string name; 236 std::string name;
235 237