summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-05-22 11:50:53 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-05-22 11:50:53 +0000
commitc52bc69f82d7405b0b4620c73bb00a73abf2b952 (patch)
treee397d74c5654dcdc423cf86e23cd3c9a33f7e186 /sys
parent644f86800067590247b04815cb4f66593a1c432e (diff)
sync
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/vnode_if.c2
-rw-r--r--sys/sys/vnode_if.h14
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/kern/vnode_if.c b/sys/kern/vnode_if.c
index 1976173325f..3e6976fe8af 100644
--- a/sys/kern/vnode_if.c
+++ b/sys/kern/vnode_if.c
@@ -3,7 +3,7 @@
* (Modifications made here may easily be lost!)
*
* Created from the file:
- * OpenBSD
+ * OpenBSD: vnode_if.src,v 1.4 1996/05/22 11:47:12 deraadt Exp
* by the script:
* OpenBSD
*/
diff --git a/sys/sys/vnode_if.h b/sys/sys/vnode_if.h
index 1cc7d6460a6..d5997cb1b46 100644
--- a/sys/sys/vnode_if.h
+++ b/sys/sys/vnode_if.h
@@ -3,7 +3,7 @@
* (Modifications made here may easily be lost!)
*
* Created from the file:
- * OpenBSD
+ * OpenBSD: vnode_if.src,v 1.4 1996/05/22 11:47:12 deraadt Exp
* by the script:
* OpenBSD
*/
@@ -935,17 +935,17 @@ static __inline int VOP_TRUNCATE(vp, length, flags, cred, p)
struct vop_update_args {
struct vnodeop_desc *a_desc;
struct vnode *a_vp;
- struct timeval *a_access;
- struct timeval *a_modify;
+ struct timespec *a_access;
+ struct timespec *a_modify;
int a_waitfor;
};
extern struct vnodeop_desc vop_update_desc;
-static __inline int VOP_UPDATE __P((struct vnode *, struct timeval *,
- struct timeval *, int));
+static __inline int VOP_UPDATE __P((struct vnode *, struct timespec *,
+ struct timespec *, int));
static __inline int VOP_UPDATE(vp, access, modify, waitfor)
struct vnode *vp;
- struct timeval *access;
- struct timeval *modify;
+ struct timespec *access;
+ struct timespec *modify;
int waitfor;
{
struct vop_update_args a;