1 .\" Copyright (c) 2004 Michael Telahun Makonnen
2 .\" All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .Dt PTHREAD_SPIN_LOCK 3
31 .Nm pthread_spin_lock , pthread_spin_trylock , pthread_spin_unlock
32 .Nd "lock or unlock a spin lock"
38 .Fn pthread_spin_lock "pthread_spinlock_t *lock"
40 .Fn pthread_spin_trylock "pthread_spinlock_t *lock"
42 .Fn pthread_spin_unlock "pthread_spinlock_t *lock"
48 if it is not currently owned by another thread.
49 If the lock cannot be acquired immediately, it will
50 spin attempting to acquire the lock (it will not sleep) until
54 .Fn pthread_spin_trylock
55 function is the same as
57 except that if it cannot acquire
59 immediately it will return with an error.
62 .Fn pthread_spin_unlock
65 which must have been previously locked by a call to
68 .Fn pthread_spin_trylock .
70 If successful, all these functions will return zero.
71 Otherwise, an error number will be returned to indicate the error.
73 None of these functions will return
77 .Fn pthread_spin_lock ,
78 .Fn pthread_spin_trylock
80 .Fn pthread_spin_unlock
81 functions will fail if:
84 The value specified by
86 is invalid or is not initialized.
94 The calling thread already owns the lock.
98 .Fn pthread_spin_trylock
99 function will fail if:
102 Another thread currently holds
107 .Fn pthread_spin_unlock
108 function may fail if:
111 The calling thread does not own
115 .Xr pthread_spin_destroy 3 ,
116 .Xr pthread_spin_init 3
119 .Fn pthread_spin_lock ,
120 .Fn pthread_spin_trylock
122 .Fn pthread_spin_unlock
123 functions first appeared in
132 The implementation of
133 .Fn pthread_spin_lock ,
134 .Fn pthread_spin_trylock
136 .Fn pthread_spin_unlock
137 is expected to conform to