Fix mdoc(7)/man(7) mix up.
[netbsd-mini2440.git] / lib / libpthread / pthread_spin_lock.3
blobbc71f4933d082cc9636eff68d0982e978a6711d4
1 .\" $NetBSD: pthread_spin_lock.3,v 1.7 2008/05/26 00:31:08 ad Exp $
2 .\"
3 .\" Copyright (c) 2002, 2008 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
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, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
14 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
15 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
17 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
23 .\" POSSIBILITY OF SUCH DAMAGE.
24 .\"
25 .Dd May 26, 2008
26 .Dt PTHREAD_SPIN_LOCK 3
27 .Os
28 .Sh NAME
29 .Nm pthread_spin_lock ,
30 .Nm pthread_spin_trylock
31 .Nd acquire a spin lock
32 .Sh LIBRARY
33 .Lb libpthread
34 .Sh SYNOPSIS
35 .In pthread.h
36 .Ft int
37 .Fn pthread_spin_lock "pthread_spinlock_t *lock"
38 .Ft int
39 .Fn pthread_spin_trylock "pthread_spinlock_t *lock"
40 .Sh DESCRIPTION
41 The
42 .Fn pthread_spin_lock
43 function acquires a spin lock on
44 .Fa lock
45 provided that
46 .Fa lock
47 is not presently held.
48 If the lock cannot be
49 immediately acquired, the calling thread repeatedly retries until it can
50 acquire the lock.
51 .Pp
52 The
53 .Fn pthread_spin_trylock
54 function performs the same action, but does not block if the lock
55 cannot be immediately obtained (i.e., the lock is held).
56 .Sh RETURN VALUES
57 If successful, the
58 .Fn pthread_spin_lock
59 and
60 .Fn pthread_spin_trylock
61 functions will return zero.
62 Otherwise an error number will be returned to indicate the error.
63 .Sh ERRORS
64 The
65 .Fn pthread_spin_trylock
66 function shall fail if:
67 .Bl -tag -width Er
68 .It Bq Er EBUSY
69 The lock could not be acquired because a writer holds the lock or
70 was blocked on it.
71 .El
72 .Pp
73 The
74 .Fn pthread_spin_lock
75 function may fail if:
76 .Bl -tag -width Er
77 .It Bq Er EDEADLK
78 The current thread already owns
79 .Fa lock
80 for writing.
81 .El
82 .Pp
83 The
84 .Fn pthread_spin_lock
85 and
86 .Fn pthread_spin_trylock
87 functions may fail if:
88 .Bl -tag -width Er
89 .It Bq Er EINVAL
90 The value specified by
91 .Fa lock
92 is invalid.
93 .El
94 .Sh SEE ALSO
95 .Xr pthread_spin_destroy 3 ,
96 .Xr pthread_spin_init 3 ,
97 .Xr pthread_spin_unlock 3
98 .Sh STANDARDS
99 .Fn pthread_spin_lock
101 .Fn pthread_spin_trylock
102 conform to
103 .St -p1003.1-2001 .
104 .Sh CAVEATS
105 Applications using spinlocks are vulnerable to the effects of priority
106 inversion.
107 Applications using real-time threads
108 .Pq Dv SCHED_FIFO , SCHED_RR
109 should not use these interfaces.
110 Outside carefully controlled environments, priority inversion with spinlocks
111 can lead to system deadlock.
112 Mutexes are preferable in nearly every possible use case.