summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1998-06-12 08:31:12 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1998-06-12 08:31:12 +0000
commitc289a71eb76f234739af0fd7f9be2d474746dac7 (patch)
tree86227d5c22aa30e35d950b2a372adb8808ae4e0f
parentb295c64e38025d25de35bdba519a16e8bbfb303e (diff)
ifdef the new sem/shm/msg syscalls
-rw-r--r--sys/kern/syscalls.master8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 5e2a3e63fdb..79e2889e3dc 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1,4 +1,4 @@
-; $OpenBSD: syscalls.master,v 1.27 1998/06/11 18:29:53 deraadt Exp $
+; $OpenBSD: syscalls.master,v 1.28 1998/06/12 08:31:11 deraadt Exp $
; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -491,9 +491,15 @@
254 STD { int sys_lchown(const char *path, uid_t uid, gid_t gid); }
255 STD { int sys_getsid(pid_t pid); }
256 STD { int sys_msync(void *addr, size_t len, int flags); }
+#ifdef SYSVSEM
257 STD { int sys___semctl(int semid, int semnum, int cmd, \
union semun *arg); }
+#endif
+#ifdef SYSVSHM
258 STD { int sys_shmctl(int shmid, int cmd, \
struct shmid_ds *buf); }
+#endif
+#ifdef SYSVMSG
259 STD { int sys_msgctl(int msqid, int cmd, \
struct msqid_ds *buf); }
+#endif