diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-07-20 00:57:07 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-07-20 00:57:07 +0000 |
commit | 98609c0a1e37317d4955953ebc8a71fece45f158 (patch) | |
tree | 156fd61d0335dbfe04a79cc768311a1f6327d3f7 /sys | |
parent | 2ab953805ad89aba5dcd39238dac3e2dcf4d1e54 (diff) |
rebuild
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/init_sysent.c | 8 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 6 | ||||
-rw-r--r-- | sys/sys/syscall.h | 8 | ||||
-rw-r--r-- | sys/sys/syscallargs.h | 11 |
4 files changed, 21 insertions, 12 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index b8f7c0fe1fa..9d0218d156d 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.167 2015/07/19 02:37:44 deraadt Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.168 2015/07/20 00:57:06 guenther Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.154 2015/07/19 02:35:35 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.155 2015/07/20 00:56:10 guenther Exp */ #include <sys/param.h> @@ -204,8 +204,8 @@ struct sysent sysent[] = { sys_utimensat }, /* 84 = utimensat */ { 2, s(struct sys_futimens_args), 0, sys_futimens }, /* 85 = futimens */ - { 0, 0, 0, - sys_nosys }, /* 86 = obsolete t32_getitimer */ + { 3, s(struct sys_kbind_args), 0, + sys_kbind }, /* 86 = kbind */ { 2, s(struct sys_clock_gettime_args), SY_NOLOCK | 0, sys_clock_gettime }, /* 87 = clock_gettime */ { 2, s(struct sys_clock_settime_args), 0, diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index bf043a81c8c..be9a837c740 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.166 2015/07/19 02:37:44 deraadt Exp $ */ +/* $OpenBSD: syscalls.c,v 1.167 2015/07/20 00:57:06 guenther Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.154 2015/07/19 02:35:35 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.155 2015/07/20 00:56:10 guenther Exp */ char *syscallnames[] = { @@ -106,7 +106,7 @@ char *syscallnames[] = { "sendsyslog", /* 83 = sendsyslog */ "utimensat", /* 84 = utimensat */ "futimens", /* 85 = futimens */ - "#86 (obsolete t32_getitimer)", /* 86 = obsolete t32_getitimer */ + "kbind", /* 86 = kbind */ "clock_gettime", /* 87 = clock_gettime */ "clock_settime", /* 88 = clock_settime */ "clock_getres", /* 89 = clock_getres */ diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 0bef207dd46..3b40f4f492a 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.165 2015/07/19 02:37:44 deraadt Exp $ */ +/* $OpenBSD: syscall.h,v 1.166 2015/07/20 00:57:06 guenther Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.154 2015/07/19 02:35:35 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.155 2015/07/20 00:56:10 guenther Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -265,7 +265,9 @@ /* syscall: "futimens" ret: "int" args: "int" "const struct timespec *" */ #define SYS_futimens 85 - /* 86 is obsolete t32_getitimer */ +/* syscall: "kbind" ret: "int" args: "const struct __kbind *" "size_t" "int64_t" */ +#define SYS_kbind 86 + /* syscall: "clock_gettime" ret: "int" args: "clockid_t" "struct timespec *" */ #define SYS_clock_gettime 87 diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index cfdd018b14f..7344a9cfc95 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.167 2015/07/19 02:37:44 deraadt Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.168 2015/07/20 00:57:06 guenther Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.154 2015/07/19 02:35:35 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.155 2015/07/20 00:56:10 guenther Exp */ #ifdef syscallarg @@ -418,6 +418,12 @@ struct sys_futimens_args { syscallarg(const struct timespec *) times; }; +struct sys_kbind_args { + syscallarg(const struct __kbind *) param; + syscallarg(size_t) psize; + syscallarg(int64_t) proc_cookie; +}; + struct sys_clock_gettime_args { syscallarg(clockid_t) clock_id; syscallarg(struct timespec *) tp; @@ -1172,6 +1178,7 @@ int sys_setpgid(struct proc *, void *, register_t *); int sys_sendsyslog(struct proc *, void *, register_t *); int sys_utimensat(struct proc *, void *, register_t *); int sys_futimens(struct proc *, void *, register_t *); +int sys_kbind(struct proc *, void *, register_t *); int sys_clock_gettime(struct proc *, void *, register_t *); int sys_clock_settime(struct proc *, void *, register_t *); int sys_clock_getres(struct proc *, void *, register_t *); |