summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/hle_ipc.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2020-03-31 03:50:05 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2020-06-27 17:36:03 +0200
commit19165cd859dcbb1f7d5e2c74c831e5196c2d1c41 (patch)
treeb8ce4801d50c76b77daae42d9ca9841a2ac82778 /src/core/hle/kernel/hle_ipc.cpp
parentSingleCore: Improve Cycle timing Behavior and replace mutex in global scheduler for spinlock. (diff)
downloadyuzu-19165cd859dcbb1f7d5e2c74c831e5196c2d1c41.tar
yuzu-19165cd859dcbb1f7d5e2c74c831e5196c2d1c41.tar.gz
yuzu-19165cd859dcbb1f7d5e2c74c831e5196c2d1c41.tar.bz2
yuzu-19165cd859dcbb1f7d5e2c74c831e5196c2d1c41.tar.lz
yuzu-19165cd859dcbb1f7d5e2c74c831e5196c2d1c41.tar.xz
yuzu-19165cd859dcbb1f7d5e2c74c831e5196c2d1c41.tar.zst
yuzu-19165cd859dcbb1f7d5e2c74c831e5196c2d1c41.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/hle_ipc.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/hle_ipc.cpp b/src/core/hle/kernel/hle_ipc.cpp
index e74d91670..9277b5d08 100644
--- a/src/core/hle/kernel/hle_ipc.cpp
+++ b/src/core/hle/kernel/hle_ipc.cpp
@@ -70,6 +70,7 @@ std::shared_ptr<WritableEvent> HLERequestContext::SleepClientThread(
});
const auto readable_event{writable_event->GetReadableEvent()};
writable_event->Clear();
+ thread->SetHLESyncObject(readable_event.get());
thread->SetStatus(ThreadStatus::WaitHLEEvent);
thread->SetSynchronizationResults(nullptr, RESULT_TIMEOUT);
readable_event->AddWaitingThread(thread);