diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-05-21 09:11:36 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-05-25 06:06:00 +0200 |
commit | 2cdb40d709f2a5d4f7f3159d4c6d80fe7905b4f3 (patch) | |
tree | 7d6d61465f7a4cb6bbb68902301e1ca92f5a76a5 /src/core/hle/kernel/semaphore.cpp | |
parent | GSP_GPU: Move error codes from result.h to local file (diff) | |
download | yuzu-2cdb40d709f2a5d4f7f3159d4c6d80fe7905b4f3.tar yuzu-2cdb40d709f2a5d4f7f3159d4c6d80fe7905b4f3.tar.gz yuzu-2cdb40d709f2a5d4f7f3159d4c6d80fe7905b4f3.tar.bz2 yuzu-2cdb40d709f2a5d4f7f3159d4c6d80fe7905b4f3.tar.lz yuzu-2cdb40d709f2a5d4f7f3159d4c6d80fe7905b4f3.tar.xz yuzu-2cdb40d709f2a5d4f7f3159d4c6d80fe7905b4f3.tar.zst yuzu-2cdb40d709f2a5d4f7f3159d4c6d80fe7905b4f3.zip |
Diffstat (limited to 'src/core/hle/kernel/semaphore.cpp')
-rw-r--r-- | src/core/hle/kernel/semaphore.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/hle/kernel/semaphore.cpp b/src/core/hle/kernel/semaphore.cpp index 8bda2f75d..fcf586728 100644 --- a/src/core/hle/kernel/semaphore.cpp +++ b/src/core/hle/kernel/semaphore.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #include "common/assert.h" +#include "core/hle/kernel/errors.h" #include "core/hle/kernel/kernel.h" #include "core/hle/kernel/semaphore.h" #include "core/hle/kernel/thread.h" @@ -16,8 +17,7 @@ ResultVal<SharedPtr<Semaphore>> Semaphore::Create(s32 initial_count, s32 max_cou std::string name) { if (initial_count > max_count) - return ResultCode(ErrorDescription::InvalidCombination, ErrorModule::Kernel, - ErrorSummary::WrongArgument, ErrorLevel::Permanent); + return ERR_INVALID_COMBINATION_KERNEL; SharedPtr<Semaphore> semaphore(new Semaphore); @@ -42,8 +42,7 @@ void Semaphore::Acquire(Thread* thread) { ResultVal<s32> Semaphore::Release(s32 release_count) { if (max_count - available_count < release_count) - return ResultCode(ErrorDescription::OutOfRange, ErrorModule::Kernel, - ErrorSummary::InvalidArgument, ErrorLevel::Permanent); + return ERR_OUT_OF_RANGE_KERNEL; s32 previous_count = available_count; available_count += release_count; |