diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-03-23 07:16:31 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-03-23 07:16:31 +0000 |
commit | 20cb00df4d9dd26a5b7938b4de0dcd40d5dd0117 (patch) | |
tree | b46c7e99560261c1c6b3e13756fbfe4d7f4513b5 | |
parent | 199f21ec720a95a4866dc7ffe0dedd7857b3eae8 (diff) |
regen
-rw-r--r-- | sys/compat/sunos/sunos_syscall.h | 4 | ||||
-rw-r--r-- | sys/compat/sunos/sunos_syscallargs.h | 8 | ||||
-rw-r--r-- | sys/compat/sunos/sunos_syscalls.c | 4 | ||||
-rw-r--r-- | sys/compat/sunos/sunos_sysent.c | 6 |
4 files changed, 11 insertions, 11 deletions
diff --git a/sys/compat/sunos/sunos_syscall.h b/sys/compat/sunos/sunos_syscall.h index 84315240beb..df6598e9cf9 100644 --- a/sys/compat/sunos/sunos_syscall.h +++ b/sys/compat/sunos/sunos_syscall.h @@ -2,7 +2,7 @@ * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.8 1997/11/13 18:35:29 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.10 1998/03/23 07:12:40 millert Exp */ #define SUNOS_SYS_syscall 0 @@ -29,7 +29,7 @@ /* 21 is obsolete sunos_old_mount */ #define SUNOS_SYS_setuid 23 #define SUNOS_SYS_getuid 24 -#define SUNOS_SYS_stime 25 +#define SUNOS_SYS_ostime 25 #define SUNOS_SYS_ptrace 26 #define SUNOS_SYS_access 33 #define SUNOS_SYS_sync 36 diff --git a/sys/compat/sunos/sunos_syscallargs.h b/sys/compat/sunos/sunos_syscallargs.h index 9e89451f0e1..76e62b5db67 100644 --- a/sys/compat/sunos/sunos_syscallargs.h +++ b/sys/compat/sunos/sunos_syscallargs.h @@ -2,7 +2,7 @@ * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.8 1997/11/13 18:35:29 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.10 1998/03/23 07:12:40 millert Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -36,8 +36,8 @@ struct sunos_sys_mknod_args { syscallarg(int) dev; }; -struct sunos_sys_stime_args { - syscallarg(time_t *) tp; +struct sunos_sys_ostime_args { + syscallarg(int) time; }; struct sunos_sys_ptrace_args { @@ -232,7 +232,7 @@ int compat_43_sys_lseek __P((struct proc *, void *, register_t *)); int sys_getpid __P((struct proc *, void *, register_t *)); int sys_setuid __P((struct proc *, void *, register_t *)); int sys_getuid __P((struct proc *, void *, register_t *)); -int sunos_sys_stime __P((struct proc *, void *, register_t *)); +int sunos_sys_ostime __P((struct proc *, void *, register_t *)); int sunos_sys_ptrace __P((struct proc *, void *, register_t *)); int sunos_sys_access __P((struct proc *, void *, register_t *)); int sys_sync __P((struct proc *, void *, register_t *)); diff --git a/sys/compat/sunos/sunos_syscalls.c b/sys/compat/sunos/sunos_syscalls.c index 849fd9e4dd7..7a9bd6ac368 100644 --- a/sys/compat/sunos/sunos_syscalls.c +++ b/sys/compat/sunos/sunos_syscalls.c @@ -2,7 +2,7 @@ * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.8 1997/11/13 18:35:29 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.10 1998/03/23 07:12:40 millert Exp */ char *sunos_syscallnames[] = { @@ -31,7 +31,7 @@ char *sunos_syscallnames[] = { "#22 (unimplemented System V umount)", /* 22 = unimplemented System V umount */ "setuid", /* 23 = setuid */ "getuid", /* 24 = getuid */ - "stime", /* 25 = stime */ + "ostime", /* 25 = ostime */ "ptrace", /* 26 = ptrace */ "#27 (unimplemented sunos_alarm)", /* 27 = unimplemented sunos_alarm */ "#28 (unimplemented sunos_fstat)", /* 28 = unimplemented sunos_fstat */ diff --git a/sys/compat/sunos/sunos_sysent.c b/sys/compat/sunos/sunos_sysent.c index 4be52569146..193e05bb45c 100644 --- a/sys/compat/sunos/sunos_sysent.c +++ b/sys/compat/sunos/sunos_sysent.c @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.8 1997/11/13 18:35:29 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.10 1998/03/23 07:12:40 millert Exp */ #include <sys/param.h> @@ -85,8 +85,8 @@ struct sysent sunos_sysent[] = { sys_setuid }, /* 23 = setuid */ { 0, 0, sys_getuid }, /* 24 = getuid */ - { 1, s(struct sunos_sys_stime_args), - sunos_sys_stime }, /* 25 = stime */ + { 1, s(struct sunos_sys_ostime_args), + sunos_sys_ostime }, /* 25 = ostime */ { 5, s(struct sunos_sys_ptrace_args), sunos_sys_ptrace }, /* 26 = ptrace */ { 0, 0, |