Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/man/man9 usually, VOP_SEEK checks new offset, not old ...



details:   https://anonhg.NetBSD.org/src/rev/6114103a33b6
branches:  trunk
changeset: 534180:6114103a33b6
user:      yamt <yamt%NetBSD.org@localhost>
date:      Fri Jul 19 17:28:29 2002 +0000

description:
usually, VOP_SEEK checks new offset, not old one.

diffstat:

 share/man/man9/vnodeops.9 |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (27 lines):

diff -r d7b3483cbe52 -r 6114103a33b6 share/man/man9/vnodeops.9
--- a/share/man/man9/vnodeops.9 Fri Jul 19 16:38:14 2002 +0000
+++ b/share/man/man9/vnodeops.9 Fri Jul 19 17:28:29 2002 +0000
@@ -1,4 +1,4 @@
-.\"     $NetBSD: vnodeops.9,v 1.10 2002/06/29 01:43:05 gmcgarry Exp $
+.\"     $NetBSD: vnodeops.9,v 1.11 2002/07/19 17:28:29 yamt Exp $
 .\"
 .\" Copyright (c) 2001 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -776,14 +776,14 @@
 system calls.
 .It Fn VOP_SEEK "vp" "oldoff" "newoff" "cred"
 Test if the file is seekable for the specified offset
-.Fa oldoff .
+.Fa newoff .
 The argument
 .Fa vp
 is the locked vnode of the file to test.  For most filesystems this
 function simply tests if
-.Fa oldoff
+.Fa newoff
 is valid.  If the specified
-.Fa oldoff
+.Fa newoff
 is less than zero, the function returns error code EINVAL.
 .It Fn VOP_REMOVE "dvp" "vp" "cnp"
 Remove a file.  The argument



Home | Main Index | Thread Index | Old Index