summaryrefslogtreecommitdiff
path: root/message.h
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2014-12-19 10:13:09 +0100
committerJustus Winter <4winter@informatik.uni-hamburg.de>2014-12-19 15:31:03 +0100
commit58dedd2cc54d59875b114d4edcadd6bd589ff37c (patch)
treec3da9ccc20a6655bd82644b32e00e14552f384df /message.h
Initial checkin.
Diffstat (limited to 'message.h')
-rw-r--r--message.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/message.h b/message.h
new file mode 100644
index 0000000..8cadda6
--- /dev/null
+++ b/message.h
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 2014 Justus Winter <4winter@informatik.uni-hamburg.de>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+typedef struct {
+ mach_msg_header_t Head;
+ mach_msg_type_t nType;
+ int n;
+} Request;
+
+typedef struct {
+ mach_msg_header_t Head;
+ mach_msg_type_t RetCodeType;
+ kern_return_t RetCode;
+ mach_msg_type_t nType;
+ int n;
+} Reply;