]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - share/man/man9/BUF_RECURSED.9
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / share / man / man9 / BUF_RECURSED.9
1 .\"
2 .\" Copyright (C) 2008 Attilio Rao <attilio@FreeBSD.org>
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice(s), this list of conditions and the following disclaimer as
10 .\"    the first lines of this file unmodified other than the possible
11 .\"    addition of one or more copyright notices.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice(s), this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
17 .\" EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 .\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 .\" DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
20 .\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 .\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 .\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23 .\" CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
26 .\" DAMAGE.
27 .\"
28 .\" $FreeBSD$
29 .\"
30 .Dd January 22, 2008
31 .Dt BUF_RECURSED 9
32 .Os
33 .Sh NAME
34 .Nm BUF_RECURSED
35 .Nd "checks if the lock linked to the buffer is recursed"
36 .Sh SYNOPSIS
37 .In sys/param.h
38 .In sys/systm.h
39 .In sys/uio.h
40 .In sys/bio.h
41 .In sys/buf.h
42 .Ft int
43 .Fn BUF_RECURSED "struct buf *bp"
44 .Sh DESCRIPTION
45 The
46 .Fn BUF_RECURSED
47 function checks if the lock linked to the given buffer is recursed and
48 returns 1 if the condition is true, 0 otherwise.
49 .Pp
50 Its argument is:
51 .Bl -tag -width ".Fa bp"
52 .It Fa bp
53 The buffer linked to the lock.
54 See
55 .Xr lockmgr_recursed 9
56 for details.
57 .El
58 .Sh SEE ALSO
59 .Xr buf 9 ,
60 .Xr BUF_LOCK 9 ,
61 .Xr BUF_UNLOCK 9 ,
62 .Xr lockmgr 9
63 .Sh AUTHORS
64 This manual page was written by
65 .An Attilio Rao Aq attilio@FreeBSD.org .