summaryrefslogtreecommitdiffstats
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-19 00:01:58 +0100
committerbunnei <bunneidev@gmail.com>2015-01-22 02:47:47 +0100
commitd2759c578e8cf24277767f701d5682f7b1792a9f (patch)
tree2a3d73e2e67aed30782f1a085ad77df45356725e /src/core/hle/svc.cpp
parentMutex: Fix a bug where the thread should not wait if it already has the mutex. (diff)
downloadyuzu-d2759c578e8cf24277767f701d5682f7b1792a9f.tar
yuzu-d2759c578e8cf24277767f701d5682f7b1792a9f.tar.gz
yuzu-d2759c578e8cf24277767f701d5682f7b1792a9f.tar.bz2
yuzu-d2759c578e8cf24277767f701d5682f7b1792a9f.tar.lz
yuzu-d2759c578e8cf24277767f701d5682f7b1792a9f.tar.xz
yuzu-d2759c578e8cf24277767f701d5682f7b1792a9f.tar.zst
yuzu-d2759c578e8cf24277767f701d5682f7b1792a9f.zip
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r--src/core/hle/svc.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 8df861669..d72839172 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -405,6 +405,7 @@ static Result DuplicateHandle(Handle* out, Handle handle) {
/// Signals an event
static Result SignalEvent(Handle evt) {
LOG_TRACE(Kernel_SVC, "called event=0x%08X", evt);
+ HLE::Reschedule(__func__);
return Kernel::SignalEvent(evt).raw;
}