Skip to content
Snippets Groups Projects
Commit e0e74435 authored by bunnei's avatar bunnei
Browse files

SVC: SleepThread should yield to the next ready thread.

parent bb730855
No related branches found
No related tags found
No related merge requests found
...@@ -331,6 +331,9 @@ static Result ClearEvent(Handle evt) { ...@@ -331,6 +331,9 @@ static Result ClearEvent(Handle evt) {
/// Sleep the current thread /// Sleep the current thread
static void SleepThread(s64 nanoseconds) { static void SleepThread(s64 nanoseconds) {
DEBUG_LOG(SVC, "called nanoseconds=%lld", 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 /// This returns the total CPU ticks elapsed since the CPU was powered-on
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment