]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sys/thr_suspend.2
libc: simplify MDASM/NOASM checks
[FreeBSD/FreeBSD.git] / lib / libc / sys / thr_suspend.2
1 .\" Copyright (c) 2016 The FreeBSD Foundation, Inc.
2 .\"
3 .\" This documentation was written by
4 .\" Konstantin Belousov <kib@FreeBSD.org> under sponsorship
5 .\" from the FreeBSD Foundation.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, 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 AUTHORS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER 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
26 .\" SUCH DAMAGE.
27 .\"
28 .Dd May 5, 2020
29 .Dt THR_SUSPEND 2
30 .Os
31 .Sh NAME
32 .Nm thr_suspend
33 .Nd suspend the calling thread
34 .Sh LIBRARY
35 .Lb libc
36 .Sh SYNOPSIS
37 .In sys/thr.h
38 .Ft int
39 .Fn thr_suspend "struct timespec *timeout"
40 .Sh DESCRIPTION
41 .Bf -symbolic
42 This function is intended for implementing threading.
43 Normal applications should use
44 .Xr pthread_cond_timedwait 3
45 together with
46 .Xr pthread_cond_broadcast 3
47 for typical safe suspension with cooperation of the thread
48 being suspended, or
49 .Xr pthread_suspend_np 3
50 and
51 .Xr pthread_resume_np 3
52 in some specific situations, instead.
53 .Ef
54 .Pp
55 The
56 .Fn thr_suspend
57 system call puts the calling thread in a suspended state, where it is
58 not eligible for CPU time.
59 This state is exited by another thread calling
60 .Xr thr_wake 2 ,
61 when the time interval specified by
62 .Fa timeout
63 has elapsed,
64 or by the delivery of a signal to the suspended thread.
65 .Pp
66 If the
67 .Fa timeout
68 argument is
69 .Dv NULL ,
70 the suspended state can be only terminated by explicit
71 .Fn thr_wake
72 or signal.
73 .Pp
74 If a wake from
75 .Xr thr_wake 2
76 was delivered before the
77 .Nm
78 call, the thread is not put into a suspended state.
79 Instead, the call
80 returns immediately without an error.
81 .Pp
82 If a thread previously called
83 .Xr thr_wake 2
84 with its own thread identifier, which resulted in setting the internal kernel
85 flag to immediately abort interruptible sleeps with an
86 .Er EINTR
87 error
88 .Po
89 see
90 .Xr thr_wake 2
91 .Pc ,
92 the flag is cleared.
93 As with
94 .Xr thr_wake 2
95 called from another thread, the next
96 .Nm
97 call does not result in suspension.
98 .Sh RETURN VALUES
99 .Rv -std thr_suspend
100 .Sh ERRORS
101 The
102 .Fn thr_suspend
103 operation returns the following errors:
104 .Bl -tag -width Er
105 .It Bq Er EFAULT
106 The memory pointed to by the
107 .Fa timeout
108 argument is not valid.
109 .It Bq Er ETIMEDOUT
110 The specified timeout expired.
111 .It Bq Er ETIMEDOUT
112 The
113 .Fa timeout
114 argument specified a zero time interval.
115 .It Bq Er EINTR
116 The sleep was interrupted by a signal.
117 .El
118 .Sh SEE ALSO
119 .Xr ps 1 ,
120 .Xr thr_wake 2 ,
121 .Xr pthread_resume_np 3 ,
122 .Xr pthread_suspend_np 3
123 .Sh STANDARDS
124 The
125 .Fn thr_suspend
126 system call is non-standard.
127 .Sh HISTORY
128 The
129 .Fn thr_suspend
130 system call first appeared in
131 .Fx 5.2 .