summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2013-06-09 13:10:27 +0000
committermiod <miod@openbsd.org>2013-06-09 13:10:27 +0000
commit3eefd456ee5c517feb9571c3f4d0209d018d7736 (patch)
tree342ac87085e550fd6873cf4eb13e96ce582c1d37
parentConstify the mib argument of sysctl(). (diff)
downloadwireguard-openbsd-3eefd456ee5c517feb9571c3f4d0209d018d7736.tar.xz
wireguard-openbsd-3eefd456ee5c517feb9571c3f4d0209d018d7736.zip
regen
-rw-r--r--sys/kern/init_sysent.c4
-rw-r--r--sys/kern/syscalls.c4
-rw-r--r--sys/sys/syscall.h6
-rw-r--r--sys/sys/syscallargs.h6
4 files changed, 10 insertions, 10 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index 4a9f3546fbe..41e64fdfbd9 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: init_sysent.c,v 1.144 2013/06/01 16:27:51 tedu Exp $ */
+/* $OpenBSD: init_sysent.c,v 1.145 2013/06/09 13:10:27 miod Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.132 2013/06/01 16:27:37 tedu Exp
+ * created from; OpenBSD: syscalls.master,v 1.133 2013/06/09 13:10:19 miod Exp
*/
#include <sys/param.h>
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index e2da52d57f8..eef2d80d2e4 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscalls.c,v 1.145 2013/06/01 16:27:51 tedu Exp $ */
+/* $OpenBSD: syscalls.c,v 1.146 2013/06/09 13:10:27 miod Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.132 2013/06/01 16:27:37 tedu Exp
+ * created from; OpenBSD: syscalls.master,v 1.133 2013/06/09 13:10:19 miod Exp
*/
char *syscallnames[] = {
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index ab075775724..0d55d50b5b6 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscall.h,v 1.144 2013/06/01 16:27:51 tedu Exp $ */
+/* $OpenBSD: syscall.h,v 1.145 2013/06/09 13:10:27 miod Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.132 2013/06/01 16:27:37 tedu Exp
+ * created from; OpenBSD: syscalls.master,v 1.133 2013/06/09 13:10:19 miod Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -442,7 +442,7 @@
/* syscall: "ftruncate" ret: "int" args: "int" "int" "off_t" */
#define SYS_ftruncate 201
-/* syscall: "__sysctl" ret: "int" args: "int *" "u_int" "void *" "size_t *" "void *" "size_t" */
+/* syscall: "__sysctl" ret: "int" args: "const int *" "u_int" "void *" "size_t *" "void *" "size_t" */
#define SYS___sysctl 202
/* syscall: "mlock" ret: "int" args: "const void *" "size_t" */
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index 88d17925201..8df257445f2 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscallargs.h,v 1.146 2013/06/01 16:27:51 tedu Exp $ */
+/* $OpenBSD: syscallargs.h,v 1.147 2013/06/09 13:10:27 miod Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.132 2013/06/01 16:27:37 tedu Exp
+ * created from; OpenBSD: syscalls.master,v 1.133 2013/06/09 13:10:19 miod Exp
*/
#ifdef syscallarg
@@ -638,7 +638,7 @@ struct sys_ftruncate_args {
};
struct sys___sysctl_args {
- syscallarg(int *) name;
+ syscallarg(const int *) name;
syscallarg(u_int) namelen;
syscallarg(void *) old;
syscallarg(size_t *) oldlenp;