diff options
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 9109bd10b..6cd9ff327 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -556,6 +556,10 @@ SharedPtr<Thread> SetupMainThread(u32 entry_point, s32 priority) { | |||
| 556 | return thread; | 556 | return thread; |
| 557 | } | 557 | } |
| 558 | 558 | ||
| 559 | bool HaveReadyThreads() { | ||
| 560 | return ready_queue.get_first() != nullptr; | ||
| 561 | } | ||
| 562 | |||
| 559 | void Reschedule() { | 563 | void Reschedule() { |
| 560 | PriorityBoostStarvedThreads(); | 564 | PriorityBoostStarvedThreads(); |
| 561 | 565 | ||