summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorMichael Scire <SciresM@gmail.com>2018-06-22 05:05:34 +0200
committerMichael Scire <SciresM@gmail.com>2018-06-22 05:05:34 +0200
commit08d454e30ddf5031190790c977bfda9422a24118 (patch)
tree0de42225f3cf8cc32a98c812b076d2e6dadee876 /src/core/hle/kernel/thread.h
parentKernel/Arbiters: HLE is atomic, adjust code to reflect that. (diff)
downloadyuzu-08d454e30ddf5031190790c977bfda9422a24118.tar
yuzu-08d454e30ddf5031190790c977bfda9422a24118.tar.gz
yuzu-08d454e30ddf5031190790c977bfda9422a24118.tar.bz2
yuzu-08d454e30ddf5031190790c977bfda9422a24118.tar.lz
yuzu-08d454e30ddf5031190790c977bfda9422a24118.tar.xz
yuzu-08d454e30ddf5031190790c977bfda9422a24118.tar.zst
yuzu-08d454e30ddf5031190790c977bfda9422a24118.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 3851d1085..f1e759802 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -228,8 +228,8 @@ public:
// If waiting on a ConditionVariable, this is the ConditionVariable address
VAddr condvar_wait_address;
- VAddr mutex_wait_address; ///< If waiting on a Mutex, this is the mutex address
- Handle wait_handle; ///< The handle used to wait for the mutex.
+ VAddr mutex_wait_address; ///< If waiting on a Mutex, this is the mutex address
+ Handle wait_handle; ///< The handle used to wait for the mutex.
// If waiting for an AddressArbiter, this is the address being waited on.
VAddr arb_wait_address{0};