about summary refs log tree commit diff
path: root/arch/x86_64/bits/ipc.h
diff options
context:
space:
mode:
authorNicholas J. Kain <njkain@gmail.com>2011-02-15 07:32:09 -0500
committerNicholas J. Kain <njkain@gmail.com>2011-02-15 07:32:09 -0500
commit1e12632591ab98a6ea3af8680716c28282552981 (patch)
tree5b79bd9a0b950d6ab414fef8cbb5dfcd1a6d2e83 /arch/x86_64/bits/ipc.h
parentc2afb747b0296f23cd1903e82ccbdee3fc2978fd (diff)
downloadmusl-1e12632591ab98a6ea3af8680716c28282552981.tar.gz
musl-1e12632591ab98a6ea3af8680716c28282552981.tar.xz
musl-1e12632591ab98a6ea3af8680716c28282552981.zip
Port musl to x86-64. One giant commit!
Diffstat (limited to 'arch/x86_64/bits/ipc.h')
-rw-r--r--arch/x86_64/bits/ipc.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/x86_64/bits/ipc.h b/arch/x86_64/bits/ipc.h
new file mode 100644
index 00000000..04fbefe1
--- /dev/null
+++ b/arch/x86_64/bits/ipc.h
@@ -0,0 +1,25 @@
+#define IPC_CREAT  01000
+#define IPC_EXCL   02000
+#define IPC_NOWAIT 04000
+
+#define IPC_RMID 0
+#define IPC_SET  1
+#define IPC_STAT 2
+#ifdef _GNU_SOURCE
+# define IPC_INFO       3               /* See ipcs.  */
+#endif
+
+#define IPC_PRIVATE ((key_t) 0)
+
+struct ipc_perm
+{
+	key_t key;
+	uid_t uid;
+	gid_t gid;
+	uid_t cuid;
+	gid_t cgid;
+	mode_t mode;
+	int seq;
+	long __pad1;
+	long __pad2;
+};