diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-11-25 01:27:14 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-10-01 09:03:52 +0200 |
commit | a8d611bdbf48906010c6cde67eb6ff720e715cf0 (patch) | |
tree | b84d23fae81f8bd9b9750ca4f9ec88bd7a35f9d5 /include/mach | |
parent | 56dc414b0699d1576fc1deb983a4bd2b0ef10f5d (diff) |
include: define MACH_MSG_TYPE_PROTECTED_PAYLOAD
* include/mach/message.h: Define MACH_MSG_TYPE_PROTECTED_PAYLOAD.
(MACH_MSG_TYPE_LAST): Adjust accordingly.
* doc/mach.texi (Message Format): Document
MACH_MSG_TYPE_PROTECTED_PAYLOAD.
Diffstat (limited to 'include/mach')
-rw-r--r-- | include/mach/message.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/mach/message.h b/include/mach/message.h index 7464a57..0a7297e 100644 --- a/include/mach/message.h +++ b/include/mach/message.h @@ -256,7 +256,9 @@ typedef struct { #define MACH_MSG_TYPE_PORT_SEND MACH_MSG_TYPE_MOVE_SEND #define MACH_MSG_TYPE_PORT_SEND_ONCE MACH_MSG_TYPE_MOVE_SEND_ONCE -#define MACH_MSG_TYPE_LAST 22 /* Last assigned */ +#define MACH_MSG_TYPE_PROTECTED_PAYLOAD 23 + +#define MACH_MSG_TYPE_LAST 23 /* Last assigned */ /* * A dummy value. Mostly used to indicate that the actual value |