diff options
| author | Utkarsh Anand <uanand009@gmail.com> | 2017-10-29 10:38:04 +0530 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-10-30 18:57:38 +0100 |
| commit | 9b42a968df89105bd61612e6f2768c75caa4e305 (patch) | |
| tree | c4bc8993d56c7624ea11f76b234f40b95d7184fd /sys/netbsd/ipc_amd64.const | |
| parent | d84e0ffaecaa8155c24bd6de1f11a291b7e1a908 (diff) | |
Add two new syscalls `shmctl` and `msgctl`
Diffstat (limited to 'sys/netbsd/ipc_amd64.const')
| -rw-r--r-- | sys/netbsd/ipc_amd64.const | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/netbsd/ipc_amd64.const b/sys/netbsd/ipc_amd64.const index 69fa49a29..1f3d3115c 100644 --- a/sys/netbsd/ipc_amd64.const +++ b/sys/netbsd/ipc_amd64.const @@ -15,8 +15,11 @@ MSG_NOERROR = 4096 SEM_UNDO = 4096 SETALL = 9 SETVAL = 8 +SHM_LOCK = 3 SHM_RDONLY = 4096 SHM_RND = 8192 +SHM_UNLOCK = 4 +SYS_msgctl = 444 SYS_msgget = 225 SYS_msgrcv = 227 SYS_msgsnd = 226 @@ -24,6 +27,7 @@ SYS_semctl = 442 SYS_semget = 221 SYS_semop = 222 SYS_shmat = 228 +SYS_shmctl = 443 SYS_shmdt = 230 SYS_shmget = 231 S_IRGRP = 32 |
