From: deraadt Date: Thu, 2 May 1996 13:14:20 +0000 (+0000) Subject: sync with master X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=4d4ae6bb6896400a26a249c77d7282e54f14516d;p=openbsd sync with master --- diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index f3982220cf9..352df46fa1f 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -193,6 +193,7 @@ #define SYS_mlock 203 #define SYS_munlock 204 #define SYS_undelete 205 +#define SYS_futimes 206 #define SYS___semctl 220 #define SYS_semget 221 #define SYS_semop 222 diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index c692ed22ca9..b49020dc494 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -877,6 +877,11 @@ struct sys_undelete_args { syscallarg(char *) path; }; +struct sys_futimes_args { + syscallarg(int) fd; + syscallarg(struct timeval *) tptr; +}; + struct sys___semctl_args { syscallarg(int) semid; syscallarg(int) semnum; @@ -1168,6 +1173,7 @@ int sys___sysctl __P((struct proc *, void *, register_t *)); int sys_mlock __P((struct proc *, void *, register_t *)); int sys_munlock __P((struct proc *, void *, register_t *)); int sys_undelete __P((struct proc *, void *, register_t *)); +int sys_futimes __P((struct proc *, void *, register_t *)); #ifdef LKM int sys_lkmnosys __P((struct proc *, void *, register_t *)); int sys_lkmnosys __P((struct proc *, void *, register_t *));