mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 03:09:58 +00:00
SVC: SleepThread should yield to the next ready thread.
This commit is contained in:
parent
bb730855e5
commit
e0e7443517
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue