diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2013-03-14 21:39:06 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2013-03-14 21:39:06 +0000 |
commit | 975783356996c540a0cf069bd12ff5db8a2c88d0 (patch) | |
tree | 897f9ee485cdae38b33235d7a81906032de06bce | |
parent | 82a7707792182d25822fe021b92f4393ea0127f2 (diff) |
regen
-rw-r--r-- | sys/kern/init_sysent.c | 8 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 6 | ||||
-rw-r--r-- | sys/sys/syscall.h | 7 | ||||
-rw-r--r-- | sys/sys/syscallargs.h | 9 |
4 files changed, 18 insertions, 12 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index fbd7c42b017..870517384b7 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.139 2013/03/02 07:06:00 guenther Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.140 2013/03/14 21:39:05 tedu Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.127 2013/03/02 07:05:18 guenther Exp + * created from; OpenBSD: syscalls.master,v 1.128 2013/03/14 21:38:22 tedu Exp */ #include <sys/param.h> @@ -781,8 +781,8 @@ struct sysent sysent[] = { sys_utimensat }, /* 326 = utimensat */ { 2, s(struct sys_futimens_args), 0, sys_futimens }, /* 327 = futimens */ - { 0, 0, 0, - sys_nosys }, /* 328 = obsolete otfork51 */ + { 1, s(struct compat_o51_sys___tfork_args), 0, + compat_o51(sys___tfork) }, /* 328 = compat_o51 __tfork */ { 1, s(struct sys___set_tcb_args), SY_NOLOCK | 0, sys___set_tcb }, /* 329 = __set_tcb */ { 0, 0, SY_NOLOCK | 0, diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 748c4232fcc..e07d979a0d9 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.140 2013/03/02 07:06:00 guenther Exp $ */ +/* $OpenBSD: syscalls.c,v 1.141 2013/03/14 21:39:05 tedu Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.127 2013/03/02 07:05:18 guenther Exp + * created from; OpenBSD: syscalls.master,v 1.128 2013/03/14 21:38:22 tedu Exp */ char *syscallnames[] = { @@ -403,7 +403,7 @@ char *syscallnames[] = { "unlinkat", /* 325 = unlinkat */ "utimensat", /* 326 = utimensat */ "futimens", /* 327 = futimens */ - "#328 (obsolete otfork51)", /* 328 = obsolete otfork51 */ + "compat_o51___tfork", /* 328 = compat_o51 __tfork */ "__set_tcb", /* 329 = __set_tcb */ "__get_tcb", /* 330 = __get_tcb */ }; diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 8f1379d8ed1..ce836d47a22 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.139 2013/03/02 07:06:00 guenther Exp $ */ +/* $OpenBSD: syscall.h,v 1.140 2013/03/14 21:39:05 tedu Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.127 2013/03/02 07:05:18 guenther Exp + * created from; OpenBSD: syscalls.master,v 1.128 2013/03/14 21:38:22 tedu Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -664,7 +664,8 @@ /* syscall: "futimens" ret: "int" args: "int" "const struct timespec *" */ #define SYS_futimens 327 - /* 328 is obsolete otfork51 */ + /* 328 is compat_o51 __tfork */ + /* syscall: "__set_tcb" ret: "void" args: "void *" */ #define SYS___set_tcb 329 diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index 4c7fb49c2f2..2e83633ee64 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.141 2013/03/02 07:06:00 guenther Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.142 2013/03/14 21:39:05 tedu Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.127 2013/03/02 07:05:18 guenther Exp + * created from; OpenBSD: syscalls.master,v 1.128 2013/03/14 21:38:22 tedu Exp */ #ifdef syscallarg @@ -1010,6 +1010,10 @@ struct sys_futimens_args { syscallarg(const struct timespec *) times; }; +struct compat_o51_sys___tfork_args { + syscallarg(struct __tfork51 *) param; +}; + struct sys___set_tcb_args { syscallarg(void *) tcb; }; @@ -1260,5 +1264,6 @@ int sys_symlinkat(struct proc *, void *, register_t *); int sys_unlinkat(struct proc *, void *, register_t *); int sys_utimensat(struct proc *, void *, register_t *); int sys_futimens(struct proc *, void *, register_t *); +int compat_o51_sys___tfork(struct proc *, void *, register_t *); int sys___set_tcb(struct proc *, void *, register_t *); int sys___get_tcb(struct proc *, void *, register_t *); |