diff options
| author | bunnei <bunneidev@gmail.com> | 2021-11-09 20:51:47 -0800 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2021-12-06 16:39:17 -0800 |
| commit | 423acf53b740ce96ca37988aad79ddf5013645ef (patch) | |
| tree | 8e0674b69def392ef7e634e24d0027b9e0f213ad /src/core/hle/kernel/k_light_lock.h | |
| parent | 15c721b90977865d964e26537f8a8f8740134164 (diff) | |
hle: kernel: KLightLock: Migrate to updated KThreadQueue.
Diffstat (limited to 'src/core/hle/kernel/k_light_lock.h')
| -rw-r--r-- | src/core/hle/kernel/k_light_lock.h | 2 |
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); |
