diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-11-14 20:13:18 -0400 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-11-21 10:46:55 -0400 |
commit | 2d16507f9fa06e868349d6f57a78585aec8628fd (patch) | |
tree | 7931e2bb9db6d55e7be760f1a1dcff14de09db78 /src/core/hle/kernel/kernel.cpp | |
parent | c52f37f259372485ac5902d9cae8de327c984a55 (diff) |
Kernel: Correct behavior of Condition Variables to be more similar to real hardware.
This commit ensures cond var threads act exactly as they do in the real
console. The original implementation uses an RBTree and the behavior of
cond var threads is that at the same priority level they act like a
FIFO.
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
-rw-r--r-- | src/core/hle/kernel/kernel.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp index f94ac150d0..cdf7944f78 100644 --- a/src/core/hle/kernel/kernel.cpp +++ b/src/core/hle/kernel/kernel.cpp @@ -66,6 +66,9 @@ static void ThreadWakeupCallback(u64 thread_handle, [[maybe_unused]] s64 cycles_ thread->SetMutexWaitAddress(0); thread->SetCondVarWaitAddress(0); thread->SetWaitHandle(0); + if (thread->GetStatus() == ThreadStatus::WaitCondVar) { + thread->GetOwnerProcess()->RemoveConditionVariableThread(thread); + } auto* const lock_owner = thread->GetLockOwner(); // Threads waking up by timeout from WaitProcessWideKey do not perform priority inheritance |