Update to reflect caddr_t -> void * change.
This commit is contained in:
parent
c6f13c73f2
commit
2eaa7e53cc
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: vnfileops.9,v 1.7 2003/04/16 13:35:35 wiz Exp $
|
||||
.\" $NetBSD: vnfileops.9,v 1.8 2003/04/20 04:42:15 gmcgarry Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
.\" All rights reserved.
|
||||
|
@ -54,9 +54,9 @@
|
|||
.Ft int
|
||||
.Fn vn_closefile "struct file *fp" "struct proc *p"
|
||||
.Ft int
|
||||
.Fn vn_fcntl "struct file *fp" "u_int com" "caddr_t data" "struct proc *p"
|
||||
.Fn vn_fcntl "struct file *fp" "u_int com" "void *data" "struct proc *p"
|
||||
.Ft int
|
||||
.Fn vn_ioctl "struct file *fp" "u_long com" "caddr_t data" "struct proc *p"
|
||||
.Fn vn_ioctl "struct file *fp" "u_long com" "void *data" "struct proc *p"
|
||||
.Ft int
|
||||
.Fn vn_read "struct file *fp" "off_t *offset" "struct uio *uio" "struct ucred *cred" "int flags"
|
||||
.Ft int
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: vnodeops.9,v 1.16 2003/04/16 13:35:35 wiz Exp $
|
||||
.\" $NetBSD: vnodeops.9,v 1.17 2003/04/20 04:42:15 gmcgarry Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
.\" All rights reserved.
|
||||
|
@ -130,10 +130,10 @@
|
|||
.Fn VOP_WRITE "struct vnode *vp" "struct uio *uio" "int ioflag" \
|
||||
"struct ucred *cred"
|
||||
.Ft int
|
||||
.Fn VOP_IOCTL "struct vnode *vp" "u_long command" "caddr_t data" \
|
||||
.Fn VOP_IOCTL "struct vnode *vp" "u_long command" "void *data" \
|
||||
"int fflag" "struct ucred *cred" "struct proc *p"
|
||||
.Ft int
|
||||
.Fn VOP_FCNTL "struct vnode *vp" "u_int command" "caddr_t data" \
|
||||
.Fn VOP_FCNTL "struct vnode *vp" "u_int command" "void *data" \
|
||||
"int fflag" "struct ucred *cred" "struct proc *p"
|
||||
.Ft int
|
||||
.Fn VOP_POLL "struct vnode *vp" "int events" "struct proc *p"
|
||||
|
@ -192,7 +192,7 @@
|
|||
.Ft int
|
||||
.Fn VOP_PATHCONF "struct vnode *vp" "int name" "register_t *retval"
|
||||
.Ft int
|
||||
.Fn VOP_ADVLOCK "struct vnode *vp" "caddr_t id" "int op" \
|
||||
.Fn VOP_ADVLOCK "struct vnode *vp" "void *id" "int op" \
|
||||
"struct flock *fl" "int flags"
|
||||
.Ft int
|
||||
.Fn VOP_BLKATOFF "struct vnode *vp" "off_t offset" "char **res" \
|
||||
|
|
Loading…
Reference in New Issue