diff options
| author | 2017-01-11 12:08:10 -0500 | |
|---|---|---|
| committer | 2017-01-11 16:38:04 -0500 | |
| commit | f2f2572fed075d2dca5ae7abcea451ac5eb382ec (patch) | |
| tree | 1a7f133a595f7362a79e3f06d1e0bcb8a4668706 /src/core/hle/kernel/thread.cpp | |
| parent | Y2R: Use the proper error code when GetStandardCoefficient receives an invali... (diff) | |
| download | yuzu-f2f2572fed075d2dca5ae7abcea451ac5eb382ec.tar.gz yuzu-f2f2572fed075d2dca5ae7abcea451ac5eb382ec.tar.xz yuzu-f2f2572fed075d2dca5ae7abcea451ac5eb382ec.zip | |
Thread: Added priority range checking to svcSetThreadPriority and removed priority clamping code from Thread::SetPriority.
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 8c6fbcd04..5ba9abf29 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -444,25 +444,9 @@ ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point, | |||
| 444 | return MakeResult<SharedPtr<Thread>>(std::move(thread)); | 444 | return MakeResult<SharedPtr<Thread>>(std::move(thread)); |
| 445 | } | 445 | } |
| 446 | 446 | ||
| 447 | // TODO(peachum): Remove this. Range checking should be done, and an appropriate error should be | ||
| 448 | // returned. | ||
| 449 | static void ClampPriority(const Thread* thread, s32* priority) { | ||
| 450 | if (*priority < THREADPRIO_HIGHEST || *priority > THREADPRIO_LOWEST) { | ||
| 451 | DEBUG_ASSERT_MSG( | ||
| 452 | false, "Application passed an out of range priority. An error should be returned."); | ||
| 453 | |||
| 454 | s32 new_priority = MathUtil::Clamp<s32>(*priority, THREADPRIO_HIGHEST, THREADPRIO_LOWEST); | ||
| 455 | LOG_WARNING(Kernel_SVC, "(name=%s): invalid priority=%d, clamping to %d", | ||
| 456 | thread->name.c_str(), *priority, new_priority); | ||
| 457 | // TODO(bunnei): Clamping to a valid priority is not necessarily correct behavior... Confirm | ||
| 458 | // validity of this | ||
| 459 | *priority = new_priority; | ||
| 460 | } | ||
| 461 | } | ||
| 462 | |||
| 463 | void Thread::SetPriority(s32 priority) { | 447 | void Thread::SetPriority(s32 priority) { |
| 464 | ClampPriority(this, &priority); | 448 | ASSERT_MSG(priority <= THREADPRIO_LOWEST && priority >= THREADPRIO_HIGHEST, |
| 465 | 449 | "Invalid priority value."); | |
| 466 | // If thread was ready, adjust queues | 450 | // If thread was ready, adjust queues |
| 467 | if (status == THREADSTATUS_READY) | 451 | if (status == THREADSTATUS_READY) |
| 468 | ready_queue.move(this, current_priority, priority); | 452 | ready_queue.move(this, current_priority, priority); |