diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-05-11 06:14:19 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-05-11 06:14:19 +0000 |
commit | 4074fc0c89cbd89a56a4ffac549e19e86424f168 (patch) | |
tree | 6960585eeeb50fd87b6711007925c1747f8df618 /sys | |
parent | b8d1d50c3fffcefd6f68e32e7c96f4059ee6990e (diff) |
sync
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/init_sysent.c | 4 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 4 | ||||
-rw-r--r-- | sys/sys/syscall.h | 10 | ||||
-rw-r--r-- | sys/sys/syscallargs.h | 10 |
4 files changed, 14 insertions, 14 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 51f614992a1..b06407f57ff 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.26 1998/04/25 07:15:51 deraadt Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.27 1998/05/11 06:14:16 deraadt Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.24 1998/04/25 07:14:45 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.25 1998/05/11 06:13:45 deraadt Exp */ #include <sys/param.h> diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index b36e4f4fce1..d453e9ccda8 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.26 1998/04/25 07:15:53 deraadt Exp $ */ +/* $OpenBSD: syscalls.c,v 1.27 1998/05/11 06:14:18 deraadt Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.24 1998/04/25 07:14:45 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.25 1998/05/11 06:13:45 deraadt Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index e6fbbac6f16..2e903b3a8ba 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.26 1998/04/25 07:15:46 deraadt Exp $ */ +/* $OpenBSD: syscall.h,v 1.27 1998/05/11 06:14:15 deraadt Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.24 1998/04/25 07:14:45 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.25 1998/05/11 06:13:45 deraadt Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -536,19 +536,19 @@ /* syscall: "msgget" ret: "int" args: "key_t" "int" */ #define SYS_msgget 225 -/* syscall: "msgsnd" ret: "int" args: "int" "void *" "size_t" "int" */ +/* syscall: "msgsnd" ret: "int" args: "int" "const void *" "size_t" "int" */ #define SYS_msgsnd 226 /* syscall: "msgrcv" ret: "int" args: "int" "void *" "size_t" "long" "int" */ #define SYS_msgrcv 227 -/* syscall: "shmat" ret: "void *" args: "int" "void *" "int" */ +/* syscall: "shmat" ret: "void *" args: "int" "const void *" "int" */ #define SYS_shmat 228 /* syscall: "shmctl" ret: "int" args: "int" "int" "struct shmid_ds *" */ #define SYS_shmctl 229 -/* syscall: "shmdt" ret: "int" args: "void *" */ +/* syscall: "shmdt" ret: "int" args: "const void *" */ #define SYS_shmdt 230 /* syscall: "shmget" ret: "int" args: "key_t" "int" "int" */ diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index b803fa0d156..d637e5989dd 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.27 1998/04/25 07:15:49 deraadt Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.28 1998/05/11 06:14:14 deraadt Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.24 1998/04/25 07:14:45 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.25 1998/05/11 06:13:45 deraadt Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -924,7 +924,7 @@ struct sys_msgget_args { struct sys_msgsnd_args { syscallarg(int) msqid; - syscallarg(void *) msgp; + syscallarg(const void *) msgp; syscallarg(size_t) msgsz; syscallarg(int) msgflg; }; @@ -939,7 +939,7 @@ struct sys_msgrcv_args { struct sys_shmat_args { syscallarg(int) shmid; - syscallarg(void *) shmaddr; + syscallarg(const void *) shmaddr; syscallarg(int) shmflg; }; @@ -950,7 +950,7 @@ struct sys_shmctl_args { }; struct sys_shmdt_args { - syscallarg(void *) shmaddr; + syscallarg(const void *) shmaddr; }; struct sys_shmget_args { |