kern: implement KPriorityQueue

This commit is contained in:
Michael Scire
2020-01-30 20:56:24 -08:00
parent e1adbb6dba
commit d262ff92cc
4 changed files with 457 additions and 0 deletions

View File

@@ -277,6 +277,9 @@ namespace ams::svc {
constexpr size_t ThreadLocalRegionSize = 0x200;
constexpr s32 LowestThreadPriority = 63;
constexpr s32 HighestThreadPriority = 0;
/* Process types. */
enum ProcessInfoType : u32 {
ProcessInfoType_ProcessState = 0,