diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-04-30 22:03:24 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-04-30 22:03:24 +0000 |
commit | 72dec8185f03d3407362cd91da1cbdd4921126ee (patch) | |
tree | 976ad1e30511cb2ca246f3c8d22eb8348336e419 /sys/compat | |
parent | 3f5c774f949c9c290c9f4f429e27b500dc3c71b9 (diff) |
Regen
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/netbsd/netbsd_syscall.h | 4 | ||||
-rw-r--r-- | sys/compat/netbsd/netbsd_syscallargs.h | 6 | ||||
-rw-r--r-- | sys/compat/netbsd/netbsd_syscalls.c | 4 | ||||
-rw-r--r-- | sys/compat/netbsd/netbsd_sysent.c | 8 |
4 files changed, 11 insertions, 11 deletions
diff --git a/sys/compat/netbsd/netbsd_syscall.h b/sys/compat/netbsd/netbsd_syscall.h index 1b2c34cd3ee..c5a36c330af 100644 --- a/sys/compat/netbsd/netbsd_syscall.h +++ b/sys/compat/netbsd/netbsd_syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: netbsd_syscall.h,v 1.19 2003/01/30 03:32:44 millert Exp $ */ +/* $OpenBSD: netbsd_syscall.h,v 1.20 2003/04/30 22:03:23 miod Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.18 2003/01/30 03:29:49 millert Exp + * created from; OpenBSD: syscalls.master,v 1.19 2003/04/30 22:02:56 miod Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ diff --git a/sys/compat/netbsd/netbsd_syscallargs.h b/sys/compat/netbsd/netbsd_syscallargs.h index 746fa36828b..92dbae9d100 100644 --- a/sys/compat/netbsd/netbsd_syscallargs.h +++ b/sys/compat/netbsd/netbsd_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: netbsd_syscallargs.h,v 1.20 2003/01/30 03:32:44 millert Exp $ */ +/* $OpenBSD: netbsd_syscallargs.h,v 1.21 2003/04/30 22:03:23 miod Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.18 2003/01/30 03:29:49 millert Exp + * created from; OpenBSD: syscalls.master,v 1.19 2003/04/30 22:02:56 miod Exp */ #ifdef syscallarg @@ -301,7 +301,7 @@ int netbsd_sys_chroot(struct proc *, void *, register_t *); int sys_fstat(struct proc *, void *, register_t *); int compat_43_sys_getkerninfo(struct proc *, void *, register_t *); int compat_43_sys_getpagesize(struct proc *, void *, register_t *); -int sys_omsync(struct proc *, void *, register_t *); +int compat_25_sys_omsync(struct proc *, void *, register_t *); int sys_vfork(struct proc *, void *, register_t *); int sys_sbrk(struct proc *, void *, register_t *); int sys_sstk(struct proc *, void *, register_t *); diff --git a/sys/compat/netbsd/netbsd_syscalls.c b/sys/compat/netbsd/netbsd_syscalls.c index ed4a4f26ed7..ba936f28b11 100644 --- a/sys/compat/netbsd/netbsd_syscalls.c +++ b/sys/compat/netbsd/netbsd_syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: netbsd_syscalls.c,v 1.19 2003/01/30 03:32:44 millert Exp $ */ +/* $OpenBSD: netbsd_syscalls.c,v 1.20 2003/04/30 22:03:23 miod Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.18 2003/01/30 03:29:49 millert Exp + * created from; OpenBSD: syscalls.master,v 1.19 2003/04/30 22:02:56 miod Exp */ char *netbsd_syscallnames[] = { diff --git a/sys/compat/netbsd/netbsd_sysent.c b/sys/compat/netbsd/netbsd_sysent.c index 92df27440b2..ceee8166ea3 100644 --- a/sys/compat/netbsd/netbsd_sysent.c +++ b/sys/compat/netbsd/netbsd_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: netbsd_sysent.c,v 1.19 2003/01/30 03:32:44 millert Exp $ */ +/* $OpenBSD: netbsd_sysent.c,v 1.20 2003/04/30 22:03:23 miod Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.18 2003/01/30 03:29:49 millert Exp + * created from; OpenBSD: syscalls.master,v 1.19 2003/04/30 22:02:56 miod Exp */ #include <sys/param.h> @@ -162,8 +162,8 @@ struct sysent netbsd_sysent[] = { compat_43_sys_getkerninfo }, /* 63 = ogetkerninfo */ { 0, 0, compat_43_sys_getpagesize }, /* 64 = ogetpagesize */ - { 2, s(struct sys_omsync_args), - sys_omsync }, /* 65 = omsync */ + { 2, s(struct compat_25_sys_omsync_args), + compat_25_sys_omsync }, /* 65 = omsync */ { 0, 0, sys_vfork }, /* 66 = vfork */ { 0, 0, |