diff options
| author | bunnei <bunneidev@gmail.com> | 2015-02-20 11:41:30 -0500 | 
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-02-20 11:41:30 -0500 | 
| commit | 5f9939070e81691e04facca9ff431070988e5b05 (patch) | |
| tree | 9bd54cdde2c34dd2f63e0396260335f267a46ce1 /src/core/hle | |
| parent | c7d1480ece78126801e308fd9a9a9a1664e34428 (diff) | |
| parent | 4fb75d220aeaa66d3e907cc2311acf6c29433800 (diff) | |
Merge pull request #588 from archshift/somebranch
Sweeping cleanup of Common
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index f8c834a8d..be1aed615 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp @@ -7,6 +7,7 @@  #include <vector>  #include "common/common.h" +#include "common/math_util.h"  #include "common/thread_queue_list.h"  #include "core/arm/arm_interface.h" @@ -339,7 +340,7 @@ static void DebugThreadQueue() {  ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point, s32 priority,          u32 arg, s32 processor_id, VAddr stack_top) {      if (priority < THREADPRIO_HIGHEST || priority > THREADPRIO_LOWEST) { -        s32 new_priority = CLAMP(priority, THREADPRIO_HIGHEST, THREADPRIO_LOWEST); +        s32 new_priority = MathUtil::Clamp<s32>(priority, THREADPRIO_HIGHEST, THREADPRIO_LOWEST);          LOG_WARNING(Kernel_SVC, "(name=%s): invalid priority=%d, clamping to %d",              name.c_str(), priority, new_priority);          // TODO(bunnei): Clamping to a valid priority is not necessarily correct behavior... Confirm @@ -387,7 +388,7 @@ static void ClampPriority(const Thread* thread, s32* priority) {      if (*priority < THREADPRIO_HIGHEST || *priority > THREADPRIO_LOWEST) {          DEBUG_ASSERT_MSG(false, "Application passed an out of range priority. An error should be returned."); -        s32 new_priority = CLAMP(*priority, THREADPRIO_HIGHEST, THREADPRIO_LOWEST); +        s32 new_priority = MathUtil::Clamp<s32>(*priority, THREADPRIO_HIGHEST, THREADPRIO_LOWEST);          LOG_WARNING(Kernel_SVC, "(name=%s): invalid priority=%d, clamping to %d",                      thread->name.c_str(), *priority, new_priority);          // TODO(bunnei): Clamping to a valid priority is not necessarily correct behavior... Confirm | 
