sysupdater: Add ValidateUpdate, begin implementing Async logic

This commit is contained in:
Michael Scire 2020-06-26 11:36:38 -07:00 committed by SciresM
parent 1bc271bab1
commit f223c27bb0
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;