summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-11-26 06:34:14 +0100
committerbunnei <bunneidev@gmail.com>2014-11-26 21:04:07 +0100
commite0e744351795e96e1e0cc0f16d0f75476e06ede5 (patch)
treeacc5e42f133e6b3908d412d9b2a2be95b054eb39 /src/core
parentMerge pull request #147 from yuriks/error-codes (diff)
downloadyuzu-e0e744351795e96e1e0cc0f16d0f75476e06ede5.tar
yuzu-e0e744351795e96e1e0cc0f16d0f75476e06ede5.tar.gz
yuzu-e0e744351795e96e1e0cc0f16d0f75476e06ede5.tar.bz2
yuzu-e0e744351795e96e1e0cc0f16d0f75476e06ede5.tar.lz
yuzu-e0e744351795e96e1e0cc0f16d0f75476e06ede5.tar.xz
yuzu-e0e744351795e96e1e0cc0f16d0f75476e06ede5.tar.zst
yuzu-e0e744351795e96e1e0cc0f16d0f75476e06ede5.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/svc.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 87d768856..48c8dee1e 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -331,6 +331,9 @@ static Result ClearEvent(Handle evt) {
/// Sleep the current thread
static void SleepThread(s64 nanoseconds) {
DEBUG_LOG(SVC, "called nanoseconds=%lld", nanoseconds);
+
+ // Check for next thread to schedule
+ HLE::Reschedule(__func__);
}
/// This returns the total CPU ticks elapsed since the CPU was powered-on