Kernel/IPC: Added a function to translate the IPC command buffer from one process to another.

Currently only CopyHandle, MoveHandle and CallingPid descriptors are implemented.
This commit is contained in:
Subv
2017-10-01 21:56:43 -05:00
parent b579bf0cc2
commit 7cf7999e02
4 changed files with 110 additions and 1 deletions

View File

@@ -7,7 +7,6 @@
#include "core/hle/result.h"
namespace Kernel {
namespace ErrCodes {
enum {
OutOfHandles = 19,
@@ -18,6 +17,7 @@ enum {
WrongPermission = 46,
InvalidBufferDescriptor = 48,
MaxConnectionsReached = 52,
CommandTooLarge = 54,
};
}