diff options
| author | 2017-01-06 22:01:33 -0500 | |
|---|---|---|
| committer | 2017-01-06 22:01:33 -0500 | |
| commit | b5eac78b43c254b20ef88386b4fdaf0bb6c29fe2 (patch) | |
| tree | b5ec9f4c3d520745e15d249e9a102ddefbb22b27 /src/core/hle/svc.cpp | |
| parent | Merge pull request #2396 from Subv/sema_acquire (diff) | |
| parent | Kernel: Don't attempt to yield execution in SleepThread(0) if there are no av... (diff) | |
| download | yuzu-b5eac78b43c254b20ef88386b4fdaf0bb6c29fe2.tar.gz yuzu-b5eac78b43c254b20ef88386b4fdaf0bb6c29fe2.tar.xz yuzu-b5eac78b43c254b20ef88386b4fdaf0bb6c29fe2.zip | |
Merge pull request #2410 from Subv/sleepthread
Don't yield execution in SleepThread(0) if there are no available threads to run
Diffstat (limited to 'src/core/hle/svc.cpp')
| -rw-r--r-- | src/core/hle/svc.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 843d697ec..2b242ff98 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp | |||
| @@ -849,6 +849,11 @@ static ResultCode CancelTimer(Kernel::Handle handle) { | |||
| 849 | static void SleepThread(s64 nanoseconds) { | 849 | static void SleepThread(s64 nanoseconds) { |
| 850 | LOG_TRACE(Kernel_SVC, "called nanoseconds=%lld", nanoseconds); | 850 | LOG_TRACE(Kernel_SVC, "called nanoseconds=%lld", nanoseconds); |
| 851 | 851 | ||
| 852 | // Don't attempt to yield execution if there are no available threads to run, | ||
| 853 | // this way we avoid a useless reschedule to the idle thread. | ||
| 854 | if (nanoseconds == 0 && !Kernel::HaveReadyThreads()) | ||
| 855 | return; | ||
| 856 | |||
| 852 | // Sleep current thread and check for next thread to schedule | 857 | // Sleep current thread and check for next thread to schedule |
| 853 | Kernel::WaitCurrentThread_Sleep(); | 858 | Kernel::WaitCurrentThread_Sleep(); |
| 854 | 859 | ||