From e0e5de91ecdc21acc6b09deed542446d044a2f8f Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 28 Jan 2017 16:14:01 +0100 Subject: sys: move ipc syscalls into separate file --- sys/ipc_amd64.const | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 sys/ipc_amd64.const (limited to 'sys/ipc_amd64.const') diff --git a/sys/ipc_amd64.const b/sys/ipc_amd64.const new file mode 100644 index 000000000..ac9ac4f8d --- /dev/null +++ b/sys/ipc_amd64.const @@ -0,0 +1,52 @@ +# AUTOGENERATED FILE +GETALL = 13 +GETNCNT = 14 +GETPID = 11 +GETVAL = 12 +GETZCNT = 15 +IPC_CREAT = 512 +IPC_EXCL = 1024 +IPC_INFO = 3 +IPC_NOWAIT = 2048 +IPC_RMID = 0 +IPC_SET = 1 +IPC_STAT = 2 +MSG_EXCEPT = 8192 +MSG_INFO = 12 +MSG_NOERROR = 4096 +MSG_STAT = 11 +SEM_INFO = 19 +SEM_STAT = 18 +SEM_UNDO = 4096 +SETALL = 17 +SETVAL = 16 +SHM_HUGETLB = 2048 +SHM_INFO = 14 +SHM_LOCK = 11 +SHM_NORESERVE = 4096 +SHM_RDONLY = 4096 +SHM_REMAP = 16384 +SHM_RND = 8192 +SHM_STAT = 13 +SHM_UNLOCK = 12 +S_IRGRP = 32 +S_IROTH = 4 +S_IRUSR = 256 +S_IWGRP = 16 +S_IWOTH = 2 +S_IWUSR = 128 +S_IXGRP = 8 +S_IXOTH = 1 +S_IXUSR = 64 +__NR_msgctl = 71 +__NR_msgget = 68 +__NR_msgrcv = 70 +__NR_msgsnd = 69 +__NR_semctl = 66 +__NR_semget = 64 +__NR_semop = 65 +__NR_semtimedop = 220 +__NR_shmat = 30 +__NR_shmctl = 31 +__NR_shmdt = 67 +__NR_shmget = 29 -- cgit mrf-deployment