Kernel: Use 0x2C as default main thread priority for homebrew and lone NRO/NSOs

This commit is contained in:
Subv 2018-04-20 17:41:11 -05:00
parent 013778aa21
commit a70ed9c8ae
3 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@
enum ThreadPriority : u32 {
THREADPRIO_HIGHEST = 0, ///< Highest thread priority
THREADPRIO_USERLAND_MAX = 24, ///< Highest thread priority for userland apps
THREADPRIO_DEFAULT = 48, ///< Default thread priority for userland apps
THREADPRIO_DEFAULT = 44, ///< Default thread priority for userland apps
THREADPRIO_LOWEST = 63, ///< Lowest thread priority
};