diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-13 17:09:22 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-13 17:09:22 +0000 |
commit | b925fa2543185693fd76de6bd087d00cb77e3cb4 (patch) | |
tree | 2460fd518819bad09b46cb8f30aafa5a65f3221e /sys/kern | |
parent | c32c0c80d11cf0d1ba4b425261db6e2839e58b58 (diff) |
sync
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/init_sysent.c | 8 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 1b0c7f51ebd..f6fac6685fa 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.171 2015/09/09 17:57:57 deraadt Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.172 2015/09/13 17:09:21 guenther Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.158 2015/09/09 17:56:59 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.159 2015/09/13 17:08:03 guenther Exp */ #include <sys/param.h> @@ -441,8 +441,8 @@ struct sysent sysent[] = { sys_truncate }, /* 200 = truncate */ { 3, s(struct sys_ftruncate_args), 0, sys_ftruncate }, /* 201 = ftruncate */ - { 6, s(struct sys___sysctl_args), 0, - sys___sysctl }, /* 202 = __sysctl */ + { 6, s(struct sys_sysctl_args), 0, + sys_sysctl }, /* 202 = sysctl */ { 2, s(struct sys_mlock_args), 0, sys_mlock }, /* 203 = mlock */ { 2, s(struct sys_munlock_args), 0, diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 20f4a19a105..768cc5e2632 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.170 2015/09/09 17:57:57 deraadt Exp $ */ +/* $OpenBSD: syscalls.c,v 1.171 2015/09/13 17:09:21 guenther Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.158 2015/09/09 17:56:59 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.159 2015/09/13 17:08:03 guenther Exp */ char *syscallnames[] = { @@ -226,7 +226,7 @@ char *syscallnames[] = { "lseek", /* 199 = lseek */ "truncate", /* 200 = truncate */ "ftruncate", /* 201 = ftruncate */ - "__sysctl", /* 202 = __sysctl */ + "sysctl", /* 202 = sysctl */ "mlock", /* 203 = mlock */ "munlock", /* 204 = munlock */ "#205 (unimplemented sys_undelete)", /* 205 = unimplemented sys_undelete */ |