diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-19 15:40:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-19 15:40:31 +0000 |
commit | c570f8073ee1d4f21ec80a9f0709816a1dfa8969 (patch) | |
tree | fe0a2c7c1ed6bd809a88f04e55684b00a0dbb3df /sys/compat/svr4/syscalls.master | |
parent | 0a3dfa6333989e63098121e4b2c4f6255ade0b39 (diff) |
from christos; add utime() and utimes()
Diffstat (limited to 'sys/compat/svr4/syscalls.master')
-rw-r--r-- | sys/compat/svr4/syscalls.master | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/compat/svr4/syscalls.master b/sys/compat/svr4/syscalls.master index 2b8a3f11a3d..fb07135a50d 100644 --- a/sys/compat/svr4/syscalls.master +++ b/sys/compat/svr4/syscalls.master @@ -1,4 +1,4 @@ - $NetBSD: syscalls.master,v 1.14 1995/10/14 20:25:06 christos Exp $ + $NetBSD: syscalls.master,v 1.15 1995/12/19 07:13:27 christos Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -37,6 +37,7 @@ #include <sys/mount.h> #include <sys/syscallargs.h> #include <compat/svr4/svr4_types.h> +#include <compat/svr4/svr4_time.h> #include <compat/svr4/svr4_signal.h> #include <compat/svr4/svr4_ucontext.h> #include <compat/svr4/svr4_syscallargs.h> @@ -73,7 +74,8 @@ 27 STD { int svr4_sys_alarm(unsigned sec); } 28 STD { int svr4_sys_fstat(int fd, struct svr4_stat *sb); } 29 UNIMPL pause -30 UNIMPL utime +30 STD { int svr4_sys_utime(char *path, \ + struct svr4_utimbuf *ubuf); } 31 UNIMPL was stty 32 UNIMPL was gtty 33 STD { int svr4_sys_access(char *path, int flags); } @@ -240,7 +242,8 @@ 151 UNIMPL 152 UNIMPL modctl 153 STD { int svr4_sys_fchroot(int fd); } -154 UNIMPL utimes +154 STD { int svr4_sys_utimes(char *path, \ + struct timeval *tptr); } 155 STD { int svr4_sys_vhangup(void); } 156 STD { int svr4_sys_gettimeofday(struct timeval *tp); } 157 NOARGS { int sys_getitimer(u_int which, \ |