sysupdater: Add ValidateUpdate, begin implementing Async logic

This commit is contained in:
Michael Scire
2020-06-26 11:36:38 -07:00
parent d47e9ec9fd
commit 015537f9bf
19 changed files with 677 additions and 3 deletions

View File

@@ -27,6 +27,8 @@ namespace ams::os {
constexpr inline s32 DefaultThreadPriority = ThreadPriorityRangeSize / 2;
constexpr inline s32 LowestThreadPriority = ThreadPriorityRangeSize - 1;
constexpr inline s32 InvalidThreadPriority = 127;
constexpr inline s32 LowestSystemThreadPriority = 35;
constexpr inline s32 HighestSystemThreadPriority = -12;