summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_condition_variable.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-11-10 07:06:49 +0100
committerbunnei <bunneidev@gmail.com>2021-12-07 01:39:17 +0100
commitf3d6e31e7805711803d11607fd807f23715d3449 (patch)
tree2dbf864417a5423c16bd37b445cb5311f2ab8d65 /src/core/hle/kernel/k_condition_variable.h
parenthle: kernel: KThread: Migrate to updated KThreadQueue (part 2). (diff)
downloadyuzu-f3d6e31e7805711803d11607fd807f23715d3449.tar
yuzu-f3d6e31e7805711803d11607fd807f23715d3449.tar.gz
yuzu-f3d6e31e7805711803d11607fd807f23715d3449.tar.bz2
yuzu-f3d6e31e7805711803d11607fd807f23715d3449.tar.lz
yuzu-f3d6e31e7805711803d11607fd807f23715d3449.tar.xz
yuzu-f3d6e31e7805711803d11607fd807f23715d3449.tar.zst
yuzu-f3d6e31e7805711803d11607fd807f23715d3449.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_condition_variable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_condition_variable.h b/src/core/hle/kernel/k_condition_variable.h
index 861dbd420..5e4815d08 100644
--- a/src/core/hle/kernel/k_condition_variable.h
+++ b/src/core/hle/kernel/k_condition_variable.h
@@ -34,7 +34,7 @@ public:
[[nodiscard]] ResultCode Wait(VAddr addr, u64 key, u32 value, s64 timeout);
private:
- [[nodiscard]] KThread* SignalImpl(KThread* thread);
+ void SignalImpl(KThread* thread);
ThreadTree thread_tree;