diff options
author | 2014-09-17 19:27:59 +0000 | |
---|---|---|
committer | 2014-09-17 19:27:59 +0000 | |
commit | c8fbfc6272b91da7b2f4fecbf9d730617b9fd6af (patch) | |
tree | 932b4d8caf11b868076279b1812ad4159ee1a406 | |
parent | The 2nd arg of setpgid(2) should be pid_t, not int. (diff) | |
download | wireguard-openbsd-c8fbfc6272b91da7b2f4fecbf9d730617b9fd6af.tar.xz wireguard-openbsd-c8fbfc6272b91da7b2f4fecbf9d730617b9fd6af.zip |
regen
-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 991e99bb214..7c0eb8d8a27 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.157 2014/09/01 05:13:22 doug Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.158 2014/09/17 19:27:59 millert Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.145 2014/09/01 05:09:53 doug Exp + * created from; OpenBSD: syscalls.master,v 1.146 2014/09/17 19:26:06 millert Exp */ #include <sys/param.h> diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 54f68083ee1..b51e3bde021 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.158 2014/09/01 05:13:22 doug Exp $ */ +/* $OpenBSD: syscalls.c,v 1.159 2014/09/17 19:27:59 millert Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.145 2014/09/01 05:09:53 doug Exp + * created from; OpenBSD: syscalls.master,v 1.146 2014/09/17 19:26:06 millert Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index fee440c9e72..97898cd7aba 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.157 2014/09/01 05:13:22 doug Exp $ */ +/* $OpenBSD: syscall.h,v 1.158 2014/09/17 19:27:59 millert Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.145 2014/09/01 05:09:53 doug Exp + * created from; OpenBSD: syscalls.master,v 1.146 2014/09/17 19:26:06 millert Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -253,7 +253,7 @@ /* syscall: "getpgrp" ret: "int" args: */ #define SYS_getpgrp 81 -/* syscall: "setpgid" ret: "int" args: "pid_t" "int" */ +/* syscall: "setpgid" ret: "int" args: "pid_t" "pid_t" */ #define SYS_setpgid 82 /* syscall: "sendsyslog" ret: "int" args: "const void *" "size_t" */ diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index fefe1f24f89..0d6ba954a87 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.159 2014/09/01 05:13:22 doug Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.160 2014/09/17 19:27:59 millert Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.145 2014/09/01 05:09:53 doug Exp + * created from; OpenBSD: syscalls.master,v 1.146 2014/09/17 19:26:06 millert Exp */ #ifdef syscallarg @@ -398,7 +398,7 @@ struct sys_setgroups_args { struct sys_setpgid_args { syscallarg(pid_t) pid; - syscallarg(int) pgid; + syscallarg(pid_t) pgid; }; struct sys_sendsyslog_args { |