diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 2233ac837fca..020ab431874c 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,14 +1,14 @@ -/* $NetBSD: init_sysent.c,v 1.185 2007/02/09 21:55:30 ad Exp $ */ +/* $NetBSD: init_sysent.c,v 1.186 2007/02/10 10:25:44 ad Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.159.2.6 2007/02/01 08:48:38 ad Exp + * created from NetBSD: syscalls.master,v 1.164 2007/02/10 10:24:44 ad Exp */ #include -__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.185 2007/02/09 21:55:30 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.186 2007/02/10 10:25:44 ad Exp $"); #include "opt_ktrace.h" #include "opt_nfsserver.h" diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 4391c1638d1a..902eb88f3570 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,14 +1,14 @@ -/* $NetBSD: syscalls.c,v 1.181 2007/02/09 21:55:31 ad Exp $ */ +/* $NetBSD: syscalls.c,v 1.182 2007/02/10 10:25:44 ad Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.162 2007/01/16 05:28:45 ad Exp + * created from NetBSD: syscalls.master,v 1.164 2007/02/10 10:24:44 ad Exp */ #include -__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.181 2007/02/09 21:55:31 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.182 2007/02/10 10:25:44 ad Exp $"); #if defined(_KERNEL_OPT) #include "opt_ktrace.h" diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index f9b27e7bc1f4..5352f7457e2f 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $NetBSD: syscall.h,v 1.178 2007/02/09 21:55:37 ad Exp $ */ +/* $NetBSD: syscall.h,v 1.179 2007/02/10 10:25:44 ad Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.162 2007/01/16 05:28:45 ad Exp + * created from NetBSD: syscalls.master,v 1.164 2007/02/10 10:24:44 ad Exp */ #ifndef _SYS_SYSCALL_H_ @@ -934,13 +934,13 @@ /* syscall: "_lwp_detach" ret: "int" args: "lwpid_t" */ #define SYS__lwp_detach 319 -/* syscall: "_lwp_park" ret: "int" args: "const struct timespec *" "struct __ucontext *" "void *" */ +/* syscall: "_lwp_park" ret: "int" args: "const struct timespec *" "struct __ucontext *" "const void *" */ #define SYS__lwp_park 320 -/* syscall: "_lwp_unpark" ret: "int" args: "lwpid_t" "void *" */ +/* syscall: "_lwp_unpark" ret: "int" args: "lwpid_t" "const void *" */ #define SYS__lwp_unpark 321 -/* syscall: "_lwp_unpark_all" ret: "int" args: "const lwpid_t *" "size_t" "void *" */ +/* syscall: "_lwp_unpark_all" ret: "size_t" args: "const lwpid_t *" "size_t" "const void *" */ #define SYS__lwp_unpark_all 322 /* 330 is obsolete sys_sa_register */ diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index 92c800a10988..df949a153c12 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $NetBSD: syscallargs.h,v 1.160 2007/02/09 21:55:37 ad Exp $ */ +/* $NetBSD: syscallargs.h,v 1.161 2007/02/10 10:25:44 ad Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.162 2007/01/16 05:28:45 ad Exp + * created from NetBSD: syscalls.master,v 1.164 2007/02/10 10:24:44 ad Exp */ #ifndef _SYS_SYSCALLARGS_H_ @@ -1398,18 +1398,18 @@ struct sys__lwp_detach_args { struct sys__lwp_park_args { syscallarg(const struct timespec *) ts; syscallarg(struct __ucontext *) ucp; - syscallarg(void *) hint; + syscallarg(const void *) hint; }; struct sys__lwp_unpark_args { syscallarg(lwpid_t) target; - syscallarg(void *) hint; + syscallarg(const void *) hint; }; struct sys__lwp_unpark_all_args { syscallarg(const lwpid_t *) targets; syscallarg(size_t) ntargets; - syscallarg(void *) hint; + syscallarg(const void *) hint; }; struct sys___sigaction_sigtramp_args {