summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_light_lock.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-11-10 05:51:47 +0100
committerbunnei <bunneidev@gmail.com>2021-12-07 01:39:17 +0100
commit423acf53b740ce96ca37988aad79ddf5013645ef (patch)
tree8e0674b69def392ef7e634e24d0027b9e0f213ad /src/core/hle/kernel/k_light_lock.h
parenthle: kernel: KAddressArbiter: Migrate to updated KThreadQueue. (diff)
downloadyuzu-423acf53b740ce96ca37988aad79ddf5013645ef.tar
yuzu-423acf53b740ce96ca37988aad79ddf5013645ef.tar.gz
yuzu-423acf53b740ce96ca37988aad79ddf5013645ef.tar.bz2
yuzu-423acf53b740ce96ca37988aad79ddf5013645ef.tar.lz
yuzu-423acf53b740ce96ca37988aad79ddf5013645ef.tar.xz
yuzu-423acf53b740ce96ca37988aad79ddf5013645ef.tar.zst
yuzu-423acf53b740ce96ca37988aad79ddf5013645ef.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_light_lock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_light_lock.h b/src/core/hle/kernel/k_light_lock.h
index ad853661d..4163b8a85 100644
--- a/src/core/hle/kernel/k_light_lock.h
+++ b/src/core/hle/kernel/k_light_lock.h
@@ -20,7 +20,7 @@ public:
void Unlock();
- void LockSlowPath(uintptr_t owner, uintptr_t cur_thread);
+ bool LockSlowPath(uintptr_t owner, uintptr_t cur_thread);
void UnlockSlowPath(uintptr_t cur_thread);