summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2016-09-04 17:24:02 +0000
committerjsing <jsing@openbsd.org>2016-09-04 17:24:02 +0000
commit0d417cd5070fd08a2aabd5d4ac4c0bd4be3b643e (patch)
tree3bdbae1de2a98b87bde42aeca3a7b3f998529edc
parentRemove sys_o58_kill since OpenBSD 6.0 has been tagged/released. (diff)
downloadwireguard-openbsd-0d417cd5070fd08a2aabd5d4ac4c0bd4be3b643e.tar.xz
wireguard-openbsd-0d417cd5070fd08a2aabd5d4ac4c0bd4be3b643e.zip
Regen.
-rw-r--r--sys/kern/init_sysent.c8
-rw-r--r--sys/kern/syscalls.c6
-rw-r--r--sys/sys/syscall.h8
-rw-r--r--sys/sys/syscallargs.h10
4 files changed, 12 insertions, 20 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index 23e914ff1b3..2ed37e14185 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: init_sysent.c,v 1.184 2016/06/27 16:52:01 jsing Exp $ */
+/* $OpenBSD: init_sysent.c,v 1.185 2016/09/04 17:24:02 jsing Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.173 2016/06/27 16:50:07 jsing Exp
+ * created from; OpenBSD: syscalls.master,v 1.174 2016/09/04 17:22:40 jsing Exp
*/
#include <sys/param.h>
@@ -96,8 +96,8 @@ struct sysent sysent[] = {
sys_fchflags }, /* 35 = fchflags */
{ 0, 0, 0,
sys_sync }, /* 36 = sync */
- { 2, s(struct sys_o58_kill_args), 0,
- sys_o58_kill }, /* 37 = o58_kill */
+ { 0, 0, 0,
+ sys_nosys }, /* 37 = obsolete o58_kill */
{ 2, s(struct sys_stat_args), 0,
sys_stat }, /* 38 = stat */
{ 0, 0, 0,
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index 468b1480650..d20476fda24 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscalls.c,v 1.183 2016/06/27 16:52:01 jsing Exp $ */
+/* $OpenBSD: syscalls.c,v 1.184 2016/09/04 17:24:02 jsing Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.173 2016/06/27 16:50:07 jsing Exp
+ * created from; OpenBSD: syscalls.master,v 1.174 2016/09/04 17:22:40 jsing Exp
*/
char *syscallnames[] = {
@@ -49,7 +49,7 @@ char *syscallnames[] = {
"chflags", /* 34 = chflags */
"fchflags", /* 35 = fchflags */
"sync", /* 36 = sync */
- "o58_kill", /* 37 = o58_kill */
+ "#37 (obsolete o58_kill)", /* 37 = obsolete o58_kill */
"stat", /* 38 = stat */
"getppid", /* 39 = getppid */
"lstat", /* 40 = lstat */
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index 08ae647c8cf..2d56d9b10d7 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscall.h,v 1.182 2016/06/27 16:52:01 jsing Exp $ */
+/* $OpenBSD: syscall.h,v 1.183 2016/09/04 17:24:02 jsing Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.173 2016/06/27 16:50:07 jsing Exp
+ * created from; OpenBSD: syscalls.master,v 1.174 2016/09/04 17:22:40 jsing Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -118,9 +118,7 @@
/* syscall: "sync" ret: "void" args: */
#define SYS_sync 36
-/* syscall: "o58_kill" ret: "int" args: "int" "int" */
-#define SYS_o58_kill 37
-
+ /* 37 is obsolete o58_kill */
/* syscall: "stat" ret: "int" args: "const char *" "struct stat *" */
#define SYS_stat 38
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index ed4600fb5f6..607e5a7fd6f 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscallargs.h,v 1.185 2016/06/27 16:52:01 jsing Exp $ */
+/* $OpenBSD: syscallargs.h,v 1.186 2016/09/04 17:24:02 jsing Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.173 2016/06/27 16:50:07 jsing Exp
+ * created from; OpenBSD: syscalls.master,v 1.174 2016/09/04 17:22:40 jsing Exp
*/
#ifdef syscallarg
@@ -186,11 +186,6 @@ struct sys_fchflags_args {
syscallarg(u_int) flags;
};
-struct sys_o58_kill_args {
- syscallarg(int) pid;
- syscallarg(int) signum;
-};
-
struct sys_stat_args {
syscallarg(const char *) path;
syscallarg(struct stat *) ub;
@@ -1141,7 +1136,6 @@ int sys_access(struct proc *, void *, register_t *);
int sys_chflags(struct proc *, void *, register_t *);
int sys_fchflags(struct proc *, void *, register_t *);
int sys_sync(struct proc *, void *, register_t *);
-int sys_o58_kill(struct proc *, void *, register_t *);
int sys_stat(struct proc *, void *, register_t *);
int sys_getppid(struct proc *, void *, register_t *);
int sys_lstat(struct proc *, void *, register_t *);