diff options
author | 2015-09-09 17:57:57 +0000 | |
---|---|---|
committer | 2015-09-09 17:57:57 +0000 | |
commit | 437462bb56601103149403bc0a4cc85d74dce686 (patch) | |
tree | 43b23dc93d02eb19f1d89371a471c4997f911f35 | |
parent | Move to next tame() API. The flags are now passed as a very simple string, (diff) | |
download | wireguard-openbsd-437462bb56601103149403bc0a4cc85d74dce686.tar.xz wireguard-openbsd-437462bb56601103149403bc0a4cc85d74dce686.zip |
sync
-rw-r--r-- | sys/kern/init_sysent.c | 4 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 4 | ||||
-rw-r--r-- | sys/sys/syscall.h | 6 | ||||
-rw-r--r-- | sys/sys/syscallargs.h | 6 |
4 files changed, 10 insertions, 10 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 37647720e92..1b0c7f51ebd 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.170 2015/08/26 05:40:40 doug Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.171 2015/09/09 17:57:57 deraadt Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.157 2015/08/26 05:20:06 doug Exp + * created from; OpenBSD: syscalls.master,v 1.158 2015/09/09 17:56:59 deraadt Exp */ #include <sys/param.h> diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 964a23de2b4..20f4a19a105 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.169 2015/08/26 05:40:40 doug Exp $ */ +/* $OpenBSD: syscalls.c,v 1.170 2015/09/09 17:57:57 deraadt Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.157 2015/08/26 05:20:06 doug Exp + * created from; OpenBSD: syscalls.master,v 1.158 2015/09/09 17:56:59 deraadt Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 4daddfbc10c..c9d017c722c 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.168 2015/08/26 05:40:40 doug Exp $ */ +/* $OpenBSD: syscall.h,v 1.169 2015/09/09 17:57:57 deraadt Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.157 2015/08/26 05:20:06 doug Exp + * created from; OpenBSD: syscalls.master,v 1.158 2015/09/09 17:56:59 deraadt Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -331,7 +331,7 @@ /* syscall: "chflagsat" ret: "int" args: "int" "const char *" "u_int" "int" */ #define SYS_chflagsat 107 -/* syscall: "tame" ret: "int" args: "int" "const char **" */ +/* syscall: "tame" ret: "int" args: "const char *" "const char **" */ #define SYS_tame 108 /* syscall: "ppoll" ret: "int" args: "struct pollfd *" "u_int" "const struct timespec *" "const sigset_t *" */ diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index 97e9d938757..707394fd3dd 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.171 2015/08/26 05:40:40 doug Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.172 2015/09/09 17:57:57 deraadt Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.157 2015/08/26 05:20:06 doug Exp + * created from; OpenBSD: syscalls.master,v 1.158 2015/09/09 17:56:59 deraadt Exp */ #ifdef syscallarg @@ -545,7 +545,7 @@ struct sys_chflagsat_args { }; struct sys_tame_args { - syscallarg(int) flags; + syscallarg(const char *) request; syscallarg(const char **) paths; }; |