summaryrefslogtreecommitdiff
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorGravatar Subv2015-01-07 16:40:08 -0500
committerGravatar Subv2015-01-08 18:39:12 -0500
commitdfc440785af73e400e7672377bdf7f65c9eca61c (patch)
tree16981e2ec3d97455abe361bf6ebb6ef161df1c19 /src/core/hle/svc.cpp
parentMerge pull request #439 from Subv/idle_thread_m (diff)
downloadyuzu-dfc440785af73e400e7672377bdf7f65c9eca61c.tar.gz
yuzu-dfc440785af73e400e7672377bdf7f65c9eca61c.tar.xz
yuzu-dfc440785af73e400e7672377bdf7f65c9eca61c.zip
SVC: Fixed SleepThread.
It will now properly wait the specified number of nanoseconds and then wake up the thread.
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r--src/core/hle/svc.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index c25409a9f..4003e0ba9 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -344,6 +344,10 @@ static void SleepThread(s64 nanoseconds) {
344 344
345 // Sleep current thread and check for next thread to schedule 345 // Sleep current thread and check for next thread to schedule
346 Kernel::WaitCurrentThread(WAITTYPE_SLEEP); 346 Kernel::WaitCurrentThread(WAITTYPE_SLEEP);
347
348 // Create an event to wake the thread up after the specified nanosecond delay has passed
349 Kernel::WakeThreadAfterDelay(Kernel::GetCurrentThreadHandle(), nanoseconds);
350
347 HLE::Reschedule(__func__); 351 HLE::Reschedule(__func__);
348} 352}
349 353