Core/Scheduling: Prepare the new priority in the thread queue when svcSetPriority is called

master
Subv 2015-05-11 19:38:10 +07:00
parent 10eb8b0c02
commit dbc1320923
1 changed files with 2 additions and 0 deletions

@ -439,6 +439,8 @@ void Thread::SetPriority(s32 priority) {
// If thread was ready, adjust queues
if (status == THREADSTATUS_READY)
ready_queue.move(this, current_priority, priority);
else
ready_queue.prepare(priority);
nominal_priority = current_priority = priority;
}