Thread: Added priority range checking to svcSetThreadPriority and removed priority clamping code from Thread::SetPriority.

This commit is contained in:
Subv 2017-01-11 12:08:10 -05:00
parent c77cafb0a7
commit fbe090645c
3 changed files with 18 additions and 18 deletions

View file

@ -62,6 +62,8 @@ s32 ResourceLimit::GetCurrentResourceValue(u32 resource) const {
s32 ResourceLimit::GetMaxResourceValue(u32 resource) const {
switch (resource) {
case PRIORITY:
return max_priority;
case COMMIT:
return max_commit;
case THREAD: