diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2010-07-01 23:11:12 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2010-07-01 23:11:12 +0000 |
commit | de6d8ab6cc7320fda1043d499496528a143e1457 (patch) | |
tree | c589960f26b8f761021d8c5e900326df82ef4ce7 | |
parent | cedc0b8a492e0064c1f03b51d79471dd3ad697d5 (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 | 6 | ||||
-rw-r--r-- | sys/sys/syscallargs.h | 10 |
4 files changed, 11 insertions, 19 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index ea362982a91..94adf2c2b6f 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.112 2010/07/01 01:55:33 deraadt Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.113 2010/07/01 23:11:11 tedu Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.100 2010/07/01 01:54:38 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.101 2010/07/01 23:10:40 tedu Exp */ #include <sys/param.h> @@ -696,8 +696,8 @@ struct sysent sysent[] = { sys_pipe }, /* 263 = pipe */ { 2, s(struct sys_fhopen_args), 0, sys_fhopen }, /* 264 = fhopen */ - { 2, s(struct compat_35_sys_fhstat_args), 0, - compat_35(sys_fhstat) }, /* 265 = compat_35 fhstat */ + { 0, 0, 0, + sys_nosys }, /* 265 = unimplemented */ { 0, 0, 0, sys_nosys }, /* 266 = unimplemented */ { 5, s(struct sys_preadv_args), 0, diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 2275ebc0b53..1355521ef12 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.113 2010/07/01 01:55:33 deraadt Exp $ */ +/* $OpenBSD: syscalls.c,v 1.114 2010/07/01 23:11:11 tedu Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.100 2010/07/01 01:54:38 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.101 2010/07/01 23:10:40 tedu Exp */ char *syscallnames[] = { @@ -354,7 +354,7 @@ char *syscallnames[] = { "#262 (unimplemented)", /* 262 = unimplemented */ "pipe", /* 263 = pipe */ "fhopen", /* 264 = fhopen */ - "compat_35_fhstat", /* 265 = compat_35 fhstat */ + "#265 (unimplemented)", /* 265 = unimplemented */ "#266 (unimplemented)", /* 266 = unimplemented */ "preadv", /* 267 = preadv */ "pwritev", /* 268 = pwritev */ diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index c71be747a66..b2140c38b94 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.112 2010/07/01 01:55:33 deraadt Exp $ */ +/* $OpenBSD: syscall.h,v 1.113 2010/07/01 23:11:11 tedu Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.100 2010/07/01 01:54:38 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.101 2010/07/01 23:10:40 tedu Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -576,8 +576,6 @@ /* syscall: "fhopen" ret: "int" args: "const fhandle_t *" "int" */ #define SYS_fhopen 264 - /* 265 is compat_35 fhstat */ - /* syscall: "preadv" ret: "ssize_t" args: "int" "const struct iovec *" "int" "int" "off_t" */ #define SYS_preadv 267 diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index 8b20b769487..768ec01f7be 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.114 2010/07/01 01:55:33 deraadt Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.115 2010/07/01 23:11:11 tedu Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.100 2010/07/01 01:54:38 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.101 2010/07/01 23:10:40 tedu Exp */ #ifdef syscallarg @@ -1035,11 +1035,6 @@ struct sys_fhopen_args { syscallarg(int) flags; }; -struct compat_35_sys_fhstat_args { - syscallarg(const fhandle_t *) fhp; - syscallarg(struct stat35 *) sb; -}; - struct sys_preadv_args { syscallarg(int) fd; syscallarg(const struct iovec *) iovp; @@ -1486,7 +1481,6 @@ int compat_35_sys_msgctl(struct proc *, void *, register_t *); #endif int sys_pipe(struct proc *, void *, register_t *); int sys_fhopen(struct proc *, void *, register_t *); -int compat_35_sys_fhstat(struct proc *, void *, register_t *); int sys_preadv(struct proc *, void *, register_t *); int sys_pwritev(struct proc *, void *, register_t *); int sys_kqueue(struct proc *, void *, register_t *); |