kernel/svc: Correct misleading error message within CreateThread()
This is a bounds check to ensure that the thread priority is within the valid range of 0-64. If it exceeds 64, that doesn't necessarily mean that an actual priority of 64 was expected (it actually means whoever called the function screwed up their math). Instead clarify the message to indicate the allowed range of thread priorities.
This commit is contained in:
parent
3a8d38be7e
commit
b4242633ad
1 changed files with 3 additions and 2 deletions
|
@ -1239,8 +1239,9 @@ static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, V
|
||||||
}
|
}
|
||||||
|
|
||||||
if (priority > THREADPRIO_LOWEST) {
|
if (priority > THREADPRIO_LOWEST) {
|
||||||
LOG_ERROR(Kernel_SVC, "An invalid priority was specified, expected {} but got {}",
|
LOG_ERROR(Kernel_SVC,
|
||||||
THREADPRIO_LOWEST, priority);
|
"Invalid thread priority specified ({}). Must be within the range 0-64",
|
||||||
|
priority);
|
||||||
return ERR_INVALID_THREAD_PRIORITY;
|
return ERR_INVALID_THREAD_PRIORITY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue