mirror of
https://codeberg.org/TheGreatMcPain/yuzu.git
synced 2025-03-18 08:41:49 +00:00
kernel: KSchedulerPriorityQueue: Lowest priority should be LowestThreadPriority.
This commit is contained in:
parent
1f99f5473c
commit
1772ebeb1e
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ class KernelCore;
|
|||
class SchedulerLock;
|
||||
|
||||
using KSchedulerPriorityQueue =
|
||||
KPriorityQueue<KThread, Core::Hardware::NUM_CPU_CORES, Svc::LowestThreadPriority + 1,
|
||||
KPriorityQueue<KThread, Core::Hardware::NUM_CPU_CORES, Svc::LowestThreadPriority,
|
||||
Svc::HighestThreadPriority>;
|
||||
|
||||
static constexpr s32 HighestCoreMigrationAllowedPriority = 2;
|
||||
|
|
Loading…
Add table
Reference in a new issue