]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man3/pthread_spin_lock.3
This commit was generated by cvs2svn to compensate for changes in r165254,
[FreeBSD/FreeBSD.git] / share / man / man3 / pthread_spin_lock.3
1 .\" Copyright (c) 2004 Michael Telahun Makonnen
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
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.
12 .\"
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
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd January 22, 2004
28 .Dt PTHREAD_SPIN_LOCK 3
29 .Os
30 .Sh NAME
31 .Nm pthread_spin_lock , pthread_spin_trylock , pthread_spin_unlock
32 .Nd "lock or unlock a spin lock"
33 .Sh LIBRARY
34 .Lb libpthread
35 .Lb libthr
36 .Sh SYNOPSIS
37 .In pthread.h
38 .Ft int
39 .Fn pthread_spin_lock "pthread_spinlock_t *lock"
40 .Ft int
41 .Fn pthread_spin_trylock "pthread_spinlock_t *lock"
42 .Ft int
43 .Fn pthread_spin_unlock "pthread_spinlock_t *lock"
44 .Sh DESCRIPTION
45 The
46 .Fn pthread_spin_lock
47 function will acquire
48 .Fa lock
49 if it is not currently owned by another thread.
50 If the lock cannot be acquired immediately, it will
51 spin attempting to acquire the lock (it will not sleep) until
52 it becomes available.
53 .Pp
54 The
55 .Fn pthread_spin_trylock
56 function is the same as
57 .Fn pthread_spin_lock
58 except that if it cannot acquire
59 .Fa lock
60 immediately it will return with an error.
61 .Pp
62 The
63 .Fn pthread_spin_unlock
64 function will release
65 .Fa lock ,
66 which must have been previously locked by a call to
67 .Fn pthread_spin_lock
68 or
69 .Fn pthread_spin_trylock .
70 .Sh RETURN VALUES
71 If successful, all these functions will return zero.
72 Otherwise, an error number will be returned to indicate the error.
73 .Pp
74 None of these functions will return
75 .Er EINTR .
76 .Sh ERRORS
77 The
78 .Fn pthread_spin_lock ,
79 .Fn pthread_spin_trylock
80 and
81 .Fn pthread_spin_unlock
82 functions will fail if:
83 .Bl -tag -width Er
84 .It Bq Er EINVAL
85 The value specified by
86 .Fa lock
87 is invalid or is not initialized.
88 .El
89 .Pp
90 The
91 .Fn pthread_spin_lock
92 function may fail if:
93 .Bl -tag -width Er
94 .It Bq Er EDEADLK
95 The calling thread already owns the lock.
96 .El
97 .Pp
98 The
99 .Fn pthread_spin_trylock
100 function will fail if:
101 .Bl -tag -width Er
102 .It Bq Er EBUSY
103 Another thread currently holds
104 .Fa lock .
105 .El
106 .Pp
107 The
108 .Fn pthread_spin_unlock
109 function may fail if:
110 .Bl -tag -width Er
111 .It Bq Er EPERM
112 The calling thread does not own
113 .Fa lock .
114 .El
115 .Sh SEE ALSO
116 .Xr pthread_spin_destroy 3 ,
117 .Xr pthread_spin_init 3
118 .Sh HISTORY
119 The
120 .Fn pthread_spin_lock ,
121 .Fn pthread_spin_trylock
122 and
123 .Fn pthread_spin_unlock
124 functions first appeared in
125 .Lb libpthread
126 in
127 .Fx 5.2 ,
128 and in
129 .Lb libthr
130 in
131 .Fx 5.3 .
132 .Sh BUGS
133 The implementation of
134 .Fn pthread_spin_lock ,
135 .Fn pthread_spin_trylock
136 and
137 .Fn pthread_spin_unlock
138 is expected to conform to
139 .St -p1003.2 .