diff options
| author | bunnei <bunneidev@gmail.com> | 2021-11-09 22:06:49 -0800 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2021-12-06 16:39:17 -0800 |
| commit | f3d6e31e7805711803d11607fd807f23715d3449 (patch) | |
| tree | 2dbf864417a5423c16bd37b445cb5311f2ab8d65 /src/core/hle/kernel/k_condition_variable.h | |
| parent | f62c7091a2bb0c70211b7424c4285906f5dccf4b (diff) | |
hle: kernel: KConditionVariable: Various updates & simplifications.
Diffstat (limited to 'src/core/hle/kernel/k_condition_variable.h')
| -rw-r--r-- | src/core/hle/kernel/k_condition_variable.h | 2 |
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; |
