Просмотр исходного кода

kernel/errors: Amend error code for ERR_NOT_FOUND

This is the value returned by the kernel for svcConnectToNamedPort() if
the named port cannot be found.
Lioncash 7 лет назад
Родитель
Сommit
50a5d09d32
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      src/core/hle/kernel/errors.h

+ 2 - 1
src/core/hle/kernel/errors.h

@@ -29,6 +29,7 @@ enum {
     SynchronizationCanceled = 118,
     SynchronizationCanceled = 118,
     TooLarge = 119,
     TooLarge = 119,
     InvalidEnumValue = 120,
     InvalidEnumValue = 120,
+    NoSuchEntry = 121,
     InvalidState = 125,
     InvalidState = 125,
     ResourceLimitExceeded = 132,
     ResourceLimitExceeded = 132,
 };
 };
@@ -63,7 +64,7 @@ constexpr ResultCode ERR_INVALID_OBJECT_ADDR(-1);
 constexpr ResultCode ERR_NOT_AUTHORIZED(-1);
 constexpr ResultCode ERR_NOT_AUTHORIZED(-1);
 /// Alternate code returned instead of ERR_INVALID_HANDLE in some code paths.
 /// Alternate code returned instead of ERR_INVALID_HANDLE in some code paths.
 constexpr ResultCode ERR_INVALID_HANDLE_OS(-1);
 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);
 constexpr ResultCode RESULT_TIMEOUT(ErrorModule::Kernel, ErrCodes::Timeout);
 /// Returned when Accept() is called on a port with no sessions to be accepted.
 /// Returned when Accept() is called on a port with no sessions to be accepted.
 constexpr ResultCode ERR_NO_PENDING_SESSIONS(-1);
 constexpr ResultCode ERR_NO_PENDING_SESSIONS(-1);