summaryrefslogtreecommitdiffstats
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-23 05:50:38 +0100
committerbunnei <bunneidev@gmail.com>2015-04-10 01:04:20 +0200
commitee3377b67da3640940d0936f7ebd8472fc1fe31b (patch)
tree29cba3de0d7c41ab2034a895c48c50364f1ab0d9 /src/core/hle/svc.cpp
parentAPT: (Subv) Fix bug where start event was being incorrectly signaled. (diff)
downloadyuzu-ee3377b67da3640940d0936f7ebd8472fc1fe31b.tar
yuzu-ee3377b67da3640940d0936f7ebd8472fc1fe31b.tar.gz
yuzu-ee3377b67da3640940d0936f7ebd8472fc1fe31b.tar.bz2
yuzu-ee3377b67da3640940d0936f7ebd8472fc1fe31b.tar.lz
yuzu-ee3377b67da3640940d0936f7ebd8472fc1fe31b.tar.xz
yuzu-ee3377b67da3640940d0936f7ebd8472fc1fe31b.tar.zst
yuzu-ee3377b67da3640940d0936f7ebd8472fc1fe31b.zip
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index bbb4eb9cd..e89e97238 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -336,6 +336,8 @@ static ResultCode CreateThread(u32* out_handle, u32 priority, u32 entry_point, u
"thread designated for system CPU core (UNIMPLEMENTED) will be run with app core scheduling");
}
+ HLE::Reschedule(__func__);
+
return RESULT_SUCCESS;
}