diff options
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r-- | sys/kern/syscalls.master | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 2c8052a6b56..d87a1a3d2c7 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.74 2004/07/14 23:45:11 millert Exp $ +; $OpenBSD: syscalls.master,v 1.75 2004/07/15 11:24:46 millert Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -424,7 +424,7 @@ ; System calls 220-240 are reserved for use by OpenBSD #ifdef SYSVSEM 220 COMPAT_23 { int sys___semctl(int semid, int semnum, int cmd, \ - union semun *arg); } __osemctl + union semun *arg); } semctl23 221 STD { int sys_semget(key_t key, int nsems, int semflg); } 222 COMPAT_35 { int sys_semop(int semid, struct sembuf *sops, \ u_int nsops); } @@ -437,7 +437,7 @@ #endif #ifdef SYSVMSG 224 COMPAT_23 { int sys_msgctl(int msqid, int cmd, \ - struct omsqid_ds *buf); } omsgctl + struct omsqid_ds *buf); } msgctl23 225 STD { int sys_msgget(key_t key, int msgflg); } 226 STD { int sys_msgsnd(int msqid, const void *msgp, size_t msgsz, \ int msgflg); } @@ -453,7 +453,7 @@ 228 STD { void *sys_shmat(int shmid, const void *shmaddr, \ int shmflg); } 229 COMPAT_23 { int sys_shmctl(int shmid, int cmd, \ - struct oshmid_ds *buf); } oshmctl + struct oshmid_ds *buf); } shmctl23 230 STD { int sys_shmdt(const void *shmaddr); } 231 COMPAT_35 { int sys_shmget(key_t key, int size, int shmflg); } #else |