diff options
Diffstat (limited to 'sys/compat/sunos')
-rw-r--r-- | sys/compat/sunos/sunos_syscall.h | 4 | ||||
-rw-r--r-- | sys/compat/sunos/sunos_syscallargs.h | 6 | ||||
-rw-r--r-- | sys/compat/sunos/sunos_syscalls.c | 4 | ||||
-rw-r--r-- | sys/compat/sunos/sunos_sysent.c | 8 |
4 files changed, 11 insertions, 11 deletions
diff --git a/sys/compat/sunos/sunos_syscall.h b/sys/compat/sunos/sunos_syscall.h index 6ff84e5a444..c15bf7978de 100644 --- a/sys/compat/sunos/sunos_syscall.h +++ b/sys/compat/sunos/sunos_syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: sunos_syscall.h,v 1.15 2003/01/30 03:32:44 millert Exp $ */ +/* $OpenBSD: sunos_syscall.h,v 1.16 2003/05/11 19:45:44 deraadt Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.13 2003/01/30 03:29:49 millert Exp + * created from OpenBSD: syscalls.master,v 1.14 2003/05/11 19:45:18 deraadt Exp */ /* syscall: "syscall" ret: "int" args: */ diff --git a/sys/compat/sunos/sunos_syscallargs.h b/sys/compat/sunos/sunos_syscallargs.h index d74cbd2889e..252a6b02625 100644 --- a/sys/compat/sunos/sunos_syscallargs.h +++ b/sys/compat/sunos/sunos_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: sunos_syscallargs.h,v 1.16 2003/01/30 03:32:44 millert Exp $ */ +/* $OpenBSD: sunos_syscallargs.h,v 1.17 2003/05/11 19:45:44 deraadt Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.13 2003/01/30 03:29:49 millert Exp + * created from OpenBSD: syscalls.master,v 1.14 2003/05/11 19:45:18 deraadt Exp */ #ifdef syscallarg @@ -291,7 +291,7 @@ int sys_setgroups(struct proc *, void *, register_t *); int sys_getpgrp(struct proc *, void *, register_t *); int sunos_sys_setpgrp(struct proc *, void *, register_t *); int sys_setitimer(struct proc *, void *, register_t *); -int sys_swapon(struct proc *, void *, register_t *); +int compat_25_sys_swapon(struct proc *, void *, register_t *); int sys_getitimer(struct proc *, void *, register_t *); int compat_43_sys_gethostname(struct proc *, void *, register_t *); int compat_43_sys_sethostname(struct proc *, void *, register_t *); diff --git a/sys/compat/sunos/sunos_syscalls.c b/sys/compat/sunos/sunos_syscalls.c index 281387f8ab1..549458a5e5f 100644 --- a/sys/compat/sunos/sunos_syscalls.c +++ b/sys/compat/sunos/sunos_syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: sunos_syscalls.c,v 1.15 2003/01/30 03:32:44 millert Exp $ */ +/* $OpenBSD: sunos_syscalls.c,v 1.16 2003/05/11 19:45:44 deraadt Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.13 2003/01/30 03:29:49 millert Exp + * created from OpenBSD: syscalls.master,v 1.14 2003/05/11 19:45:18 deraadt Exp */ char *sunos_syscallnames[] = { diff --git a/sys/compat/sunos/sunos_sysent.c b/sys/compat/sunos/sunos_sysent.c index b100986b69b..b5a2ba2f0aa 100644 --- a/sys/compat/sunos/sunos_sysent.c +++ b/sys/compat/sunos/sunos_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: sunos_sysent.c,v 1.15 2003/01/30 03:32:44 millert Exp $ */ +/* $OpenBSD: sunos_sysent.c,v 1.16 2003/05/11 19:45:44 deraadt Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.13 2003/01/30 03:29:49 millert Exp + * created from OpenBSD: syscalls.master,v 1.14 2003/05/11 19:45:18 deraadt Exp */ #include <sys/param.h> @@ -194,8 +194,8 @@ struct sysent sunos_sysent[] = { sys_setitimer }, /* 83 = setitimer */ { 0, 0, sys_nosys }, /* 84 = unimplemented { int sunos_sys_wait ( void ) ; } */ - { 1, s(struct sys_swapon_args), - sys_swapon }, /* 85 = swapon */ + { 1, s(struct compat_25_sys_swapon_args), + compat_25_sys_swapon }, /* 85 = swapon */ { 2, s(struct sys_getitimer_args), sys_getitimer }, /* 86 = getitimer */ { 2, s(struct compat_43_sys_gethostname_args), |