diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-17 18:28:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 18:28:40 +0200 |
commit | 2bfb9fd0e609112122cac6556a5c4341c01440e7 (patch) | |
tree | 972e92167eaa5cc8d3c806adc8ebbe1034d69949 /src/core/hle/kernel | |
parent | Merge pull request #1314 from lioncash/cast (diff) | |
parent | kernel/errors: Amend error code for ERR_NOT_FOUND (diff) | |
download | yuzu-2bfb9fd0e609112122cac6556a5c4341c01440e7.tar yuzu-2bfb9fd0e609112122cac6556a5c4341c01440e7.tar.gz yuzu-2bfb9fd0e609112122cac6556a5c4341c01440e7.tar.bz2 yuzu-2bfb9fd0e609112122cac6556a5c4341c01440e7.tar.lz yuzu-2bfb9fd0e609112122cac6556a5c4341c01440e7.tar.xz yuzu-2bfb9fd0e609112122cac6556a5c4341c01440e7.tar.zst yuzu-2bfb9fd0e609112122cac6556a5c4341c01440e7.zip |
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r-- | src/core/hle/kernel/errors.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/errors.h b/src/core/hle/kernel/errors.h index 2be2fad82..8c2be2681 100644 --- a/src/core/hle/kernel/errors.h +++ b/src/core/hle/kernel/errors.h @@ -30,6 +30,7 @@ enum { SynchronizationCanceled = 118, TooLarge = 119, InvalidEnumValue = 120, + NoSuchEntry = 121, InvalidState = 125, ResourceLimitExceeded = 132, }; @@ -65,7 +66,7 @@ constexpr ResultCode ERR_INVALID_OBJECT_ADDR(-1); constexpr ResultCode ERR_NOT_AUTHORIZED(-1); /// Alternate code returned instead of ERR_INVALID_HANDLE in some code paths. constexpr ResultCode ERR_INVALID_HANDLE_OS(-1); -constexpr ResultCode ERR_NOT_FOUND(-1); +constexpr ResultCode ERR_NOT_FOUND(ErrorModule::Kernel, ErrCodes::NoSuchEntry); constexpr ResultCode RESULT_TIMEOUT(ErrorModule::Kernel, ErrCodes::Timeout); /// Returned when Accept() is called on a port with no sessions to be accepted. constexpr ResultCode ERR_NO_PENDING_SESSIONS(-1); |