|
|
@ -10,11 +10,6 @@ namespace Kernel { |
|
|
|
|
|
|
|
|
namespace ErrCodes { |
|
|
namespace ErrCodes { |
|
|
enum { |
|
|
enum { |
|
|
// TODO(Subv): Remove these 3DS OS error codes. |
|
|
|
|
|
SessionClosedByRemote = 26, |
|
|
|
|
|
NoPendingSessions = 35, |
|
|
|
|
|
InvalidBufferDescriptor = 48, |
|
|
|
|
|
|
|
|
|
|
|
// Confirmed Switch OS error codes |
|
|
// Confirmed Switch OS error codes |
|
|
MaxConnectionsReached = 7, |
|
|
MaxConnectionsReached = 7, |
|
|
InvalidSize = 101, |
|
|
InvalidSize = 101, |
|
|
@ -26,6 +21,7 @@ enum { |
|
|
InvalidThreadPriority = 112, |
|
|
InvalidThreadPriority = 112, |
|
|
InvalidProcessorId = 113, |
|
|
InvalidProcessorId = 113, |
|
|
InvalidHandle = 114, |
|
|
InvalidHandle = 114, |
|
|
|
|
|
InvalidPointer = 115, |
|
|
InvalidCombination = 116, |
|
|
InvalidCombination = 116, |
|
|
Timeout = 117, |
|
|
Timeout = 117, |
|
|
SynchronizationCanceled = 118, |
|
|
SynchronizationCanceled = 118, |
|
|
@ -33,6 +29,7 @@ enum { |
|
|
InvalidEnumValue = 120, |
|
|
InvalidEnumValue = 120, |
|
|
NoSuchEntry = 121, |
|
|
NoSuchEntry = 121, |
|
|
AlreadyRegistered = 122, |
|
|
AlreadyRegistered = 122, |
|
|
|
|
|
SessionClosed = 123, |
|
|
InvalidState = 125, |
|
|
InvalidState = 125, |
|
|
ResourceLimitExceeded = 132, |
|
|
ResourceLimitExceeded = 132, |
|
|
}; |
|
|
}; |
|
|
@ -41,18 +38,14 @@ enum { |
|
|
// WARNING: The kernel is quite inconsistent in it's usage of errors code. Make sure to always |
|
|
// WARNING: The kernel is quite inconsistent in it's usage of errors code. Make sure to always |
|
|
// double check that the code matches before re-using the constant. |
|
|
// double check that the code matches before re-using the constant. |
|
|
|
|
|
|
|
|
// TODO(bunnei): Replace -1 with correct errors for Switch OS |
|
|
|
|
|
constexpr ResultCode ERR_HANDLE_TABLE_FULL(ErrorModule::Kernel, ErrCodes::HandleTableFull); |
|
|
constexpr ResultCode ERR_HANDLE_TABLE_FULL(ErrorModule::Kernel, ErrCodes::HandleTableFull); |
|
|
constexpr ResultCode ERR_SESSION_CLOSED_BY_REMOTE(-1); |
|
|
|
|
|
|
|
|
constexpr ResultCode ERR_SESSION_CLOSED_BY_REMOTE(ErrorModule::Kernel, ErrCodes::SessionClosed); |
|
|
constexpr ResultCode ERR_PORT_NAME_TOO_LONG(ErrorModule::Kernel, ErrCodes::TooLarge); |
|
|
constexpr ResultCode ERR_PORT_NAME_TOO_LONG(ErrorModule::Kernel, ErrCodes::TooLarge); |
|
|
constexpr ResultCode ERR_MAX_CONNECTIONS_REACHED(ErrorModule::Kernel, |
|
|
constexpr ResultCode ERR_MAX_CONNECTIONS_REACHED(ErrorModule::Kernel, |
|
|
ErrCodes::MaxConnectionsReached); |
|
|
ErrCodes::MaxConnectionsReached); |
|
|
constexpr ResultCode ERR_INVALID_ENUM_VALUE(ErrorModule::Kernel, ErrCodes::InvalidEnumValue); |
|
|
constexpr ResultCode ERR_INVALID_ENUM_VALUE(ErrorModule::Kernel, ErrCodes::InvalidEnumValue); |
|
|
constexpr ResultCode ERR_INVALID_ENUM_VALUE_FND(-1); |
|
|
|
|
|
constexpr ResultCode ERR_INVALID_COMBINATION(-1); |
|
|
|
|
|
constexpr ResultCode ERR_INVALID_COMBINATION_KERNEL(ErrorModule::Kernel, |
|
|
constexpr ResultCode ERR_INVALID_COMBINATION_KERNEL(ErrorModule::Kernel, |
|
|
ErrCodes::InvalidCombination); |
|
|
ErrCodes::InvalidCombination); |
|
|
constexpr ResultCode ERR_OUT_OF_MEMORY(-1); |
|
|
|
|
|
constexpr ResultCode ERR_INVALID_ADDRESS(ErrorModule::Kernel, ErrCodes::InvalidAddress); |
|
|
constexpr ResultCode ERR_INVALID_ADDRESS(ErrorModule::Kernel, ErrCodes::InvalidAddress); |
|
|
constexpr ResultCode ERR_INVALID_ADDRESS_STATE(ErrorModule::Kernel, ErrCodes::InvalidMemoryState); |
|
|
constexpr ResultCode ERR_INVALID_ADDRESS_STATE(ErrorModule::Kernel, ErrCodes::InvalidMemoryState); |
|
|
constexpr ResultCode ERR_INVALID_MEMORY_PERMISSIONS(ErrorModule::Kernel, |
|
|
constexpr ResultCode ERR_INVALID_MEMORY_PERMISSIONS(ErrorModule::Kernel, |
|
|
@ -65,14 +58,8 @@ constexpr ResultCode ERR_ALREADY_REGISTERED(ErrorModule::Kernel, ErrCodes::Alrea |
|
|
constexpr ResultCode ERR_INVALID_STATE(ErrorModule::Kernel, ErrCodes::InvalidState); |
|
|
constexpr ResultCode ERR_INVALID_STATE(ErrorModule::Kernel, ErrCodes::InvalidState); |
|
|
constexpr ResultCode ERR_INVALID_THREAD_PRIORITY(ErrorModule::Kernel, |
|
|
constexpr ResultCode ERR_INVALID_THREAD_PRIORITY(ErrorModule::Kernel, |
|
|
ErrCodes::InvalidThreadPriority); |
|
|
ErrCodes::InvalidThreadPriority); |
|
|
constexpr ResultCode ERR_INVALID_POINTER(-1); |
|
|
|
|
|
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_INVALID_POINTER(ErrorModule::Kernel, ErrCodes::InvalidPointer); |
|
|
constexpr ResultCode ERR_NOT_FOUND(ErrorModule::Kernel, ErrCodes::NoSuchEntry); |
|
|
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. |
|
|
|
|
|
constexpr ResultCode ERR_NO_PENDING_SESSIONS(-1); |
|
|
|
|
|
|
|
|
|
|
|
} // namespace Kernel |
|
|
} // namespace Kernel |