sync with master
authorderaadt <deraadt@openbsd.org>
Thu, 2 May 1996 13:14:20 +0000 (13:14 +0000)
committerderaadt <deraadt@openbsd.org>
Thu, 2 May 1996 13:14:20 +0000 (13:14 +0000)
sys/sys/syscall.h
sys/sys/syscallargs.h

index f398222..352df46 100644 (file)
 #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
index c692ed2..b49020d 100644 (file)
@@ -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 *));