summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-03-14 00:55:04 +0100
committerFernandoS27 <fsahmkow27@gmail.com>2019-03-20 01:32:47 +0100
commitacbdfdae644ad56ca94318758f57e406350586ce (patch)
tree472bd8e0001d74d59cce42ec47a5f01fe6910990 /src/core/hle/kernel/svc.cpp
parentSmall fixes to address_arbiter to better match the IDB. (diff)
downloadyuzu-acbdfdae644ad56ca94318758f57e406350586ce.tar
yuzu-acbdfdae644ad56ca94318758f57e406350586ce.tar.gz
yuzu-acbdfdae644ad56ca94318758f57e406350586ce.tar.bz2
yuzu-acbdfdae644ad56ca94318758f57e406350586ce.tar.lz
yuzu-acbdfdae644ad56ca94318758f57e406350586ce.tar.xz
yuzu-acbdfdae644ad56ca94318758f57e406350586ce.tar.zst
yuzu-acbdfdae644ad56ca94318758f57e406350586ce.zip
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index d241b65c7..37608e27a 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1350,7 +1350,7 @@ static ResultCode WaitProcessWideKeyAtomic(VAddr mutex_addr, VAddr condition_var
current_thread->SetCondVarWaitAddress(condition_variable_addr);
current_thread->SetMutexWaitAddress(mutex_addr);
current_thread->SetWaitHandle(thread_handle);
- current_thread->SetStatus(ThreadStatus::WaitMutex);
+ current_thread->SetStatus(ThreadStatus::WaitCondVar);
current_thread->InvalidateWakeupCallback();
current_thread->WakeAfterDelay(nano_seconds);
@@ -1456,7 +1456,7 @@ static ResultCode SignalProcessWideKey(VAddr condition_variable_addr, s32 target
const auto& handle_table = Core::CurrentProcess()->GetHandleTable();
auto owner = handle_table.Get<Thread>(owner_handle);
ASSERT(owner);
- ASSERT(thread->GetStatus() == ThreadStatus::WaitMutex);
+ ASSERT(thread->GetStatus() == ThreadStatus::WaitCondVar);
thread->InvalidateWakeupCallback();
owner->AddMutexWaiter(thread);