 |
|
| |
Manual Reference Pages - VHOLD (9)
NAME
vhold, vdrop
- acquire/release a hold on a vnode
CONTENTS
Synopsis
Description
See Also
Authors
SYNOPSIS
.In sys/param.h
.In sys/vnode.h
void
vhold struct vnode *vp
void
vdrop struct vnode *vp
DESCRIPTION
The
vhold
function increments the
v_holdcnt
of the given vnode.
If the vnode has already been added to the free list and is still referenced,
it will be removed.
The
vdrop
function decrements the
v_holdcnt
of the vnode.
If the holdcount is less than or equal to zero prior to calling
vdrop,
the system will panic.
If the vnode is no longer referenced, it will be freed.
SEE ALSO
vbusy(9),
vfree(9)
AUTHORS
This manual page was written by
.An Chad David Aq davidc@acns.ab.ca .
| November 21, 2001 | VHOLD (9) | |
Visit the GSP FreeBSD Man Page Interface. Output converted with manServer 1.07.
|