summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
-rw-r--r--src/core/hle/kernel/thread.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 3a1e15ac6..33d66b986 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -156,9 +156,8 @@ static void PriorityBoostStarvedThreads() {
156 u64 delta = current_ticks - thread->last_running_ticks; 156 u64 delta = current_ticks - thread->last_running_ticks;
157 157
158 if (thread->status == THREADSTATUS_READY && delta > boost_timeout && !thread->idle) { 158 if (thread->status == THREADSTATUS_READY && delta > boost_timeout && !thread->idle) {
159 const s32 boost_priority = std::max(ready_queue.get_first()->current_priority - 1, 0); 159 const s32 priority = std::max(ready_queue.get_first()->current_priority - 1, 0);
160 ready_queue.move(thread, thread->current_priority, boost_priority); 160 thread->BoostPriority(priority);
161 thread->current_priority = boost_priority;
162 } 161 }
163 } 162 }
164} 163}
@@ -435,6 +434,11 @@ void Thread::SetPriority(s32 priority) {
435 nominal_priority = current_priority = priority; 434 nominal_priority = current_priority = priority;
436} 435}
437 436
437void Thread::BoostPriority(s32 priority) {
438 ready_queue.move(this, current_priority, priority);
439 current_priority = priority;
440}
441
438SharedPtr<Thread> SetupIdleThread() { 442SharedPtr<Thread> SetupIdleThread() {
439 // We need to pass a few valid values to get around parameter checking in Thread::Create. 443 // We need to pass a few valid values to get around parameter checking in Thread::Create.
440 auto thread = Thread::Create("idle", Memory::KERNEL_MEMORY_VADDR, THREADPRIO_LOWEST, 0, 444 auto thread = Thread::Create("idle", Memory::KERNEL_MEMORY_VADDR, THREADPRIO_LOWEST, 0,