]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/gen/getcontext.3
libsys: fix sleep(3)/usleep(3) cancel behavior
[FreeBSD/FreeBSD.git] / lib / libc / gen / getcontext.3
1 .\" Copyright (c) 2002 Packet Design, LLC.
2 .\" All rights reserved.
3 .\"
4 .\" Subject to the following obligations and disclaimer of warranty,
5 .\" use and redistribution of this software, in source or object code
6 .\" forms, with or without modifications are expressly permitted by
7 .\" Packet Design; provided, however, that:
8 .\"
9 .\"    (i)  Any and all reproductions of the source or object code
10 .\"         must include the copyright notice above and the following
11 .\"         disclaimer of warranties; and
12 .\"    (ii) No rights are granted, in any manner or form, to use
13 .\"         Packet Design trademarks, including the mark "PACKET DESIGN"
14 .\"         on advertising, endorsements, or otherwise except as such
15 .\"         appears in the above copyright notice or in the software.
16 .\"
17 .\" THIS SOFTWARE IS BEING PROVIDED BY PACKET DESIGN "AS IS", AND
18 .\" TO THE MAXIMUM EXTENT PERMITTED BY LAW, PACKET DESIGN MAKES NO
19 .\" REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING
20 .\" THIS SOFTWARE, INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED
21 .\" WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
22 .\" OR NON-INFRINGEMENT.  PACKET DESIGN DOES NOT WARRANT, GUARANTEE,
23 .\" OR MAKE ANY REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS
24 .\" OF THE USE OF THIS SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY,
25 .\" RELIABILITY OR OTHERWISE.  IN NO EVENT SHALL PACKET DESIGN BE
26 .\" LIABLE FOR ANY DAMAGES RESULTING FROM OR ARISING OUT OF ANY USE
27 .\" OF THIS SOFTWARE, INCLUDING WITHOUT LIMITATION, ANY DIRECT,
28 .\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE, OR CONSEQUENTIAL
29 .\" DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, LOSS OF
30 .\" USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY THEORY OF
31 .\" LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
33 .\" THE USE OF THIS SOFTWARE, EVEN IF PACKET DESIGN IS ADVISED OF
34 .\" THE POSSIBILITY OF SUCH DAMAGE.
35 .\"
36 .Dd March 23, 2020
37 .Dt GETCONTEXT 3
38 .Os
39 .Sh NAME
40 .Nm getcontext , getcontextx , setcontext
41 .Nd get and set user thread context
42 .Sh LIBRARY
43 .Lb libc
44 .Sh SYNOPSIS
45 .In ucontext.h
46 .Ft int
47 .Fn getcontext "ucontext_t *ucp"
48 .Ft ucontext_t *
49 .Fn getcontextx "void"
50 .Ft int
51 .Fn setcontext "const ucontext_t *ucp"
52 .Sh DESCRIPTION
53 The
54 .Fn getcontext
55 function
56 saves the current thread's execution context in the structure pointed to by
57 .Fa ucp .
58 This saved context may then later be restored by calling
59 .Fn setcontext .
60 .Pp
61 The
62 .Fn getcontextx
63 function saves the current execution context in the newly allocated structure
64 .Vt ucontext_t ,
65 which is returned on success.
66 If architecture defines additional CPU states that can be stored in extended
67 blocks referenced from the
68 .Vt ucontext_t ,
69 the memory for them may be allocated and their context also stored.
70 Memory returned by
71 .Fn getcontextx
72 function shall be freed using
73 .Fn free 3 .
74 .Pp
75 The
76 .Fn setcontext
77 function
78 makes a previously saved thread context the current thread context, i.e.,
79 the current context is lost and
80 .Fn setcontext
81 does not return.
82 Instead, execution continues in the context specified by
83 .Fa ucp ,
84 which must have been previously initialized by a call to
85 .Fn getcontext ,
86 .Xr makecontext 3 ,
87 or by being passed as an argument to a signal handler (see
88 .Xr sigaction 2 ) .
89 .Pp
90 If
91 .Fa ucp
92 was initialized by
93 .Fn getcontext ,
94 then execution continues as if the original
95 .Fn getcontext
96 call had just returned (again).
97 .Pp
98 If
99 .Fa ucp
100 was initialized by
101 .Xr makecontext 3 ,
102 execution continues with the invocation of the function specified to
103 .Xr makecontext 3 .
104 When that function returns,
105 .Fa "ucp->uc_link"
106 determines what happens next:
107 if
108 .Fa "ucp->uc_link"
109 is
110 .Dv NULL ,
111 the process exits;
112 otherwise,
113 .Fn setcontext "ucp->uc_link"
114 is implicitly invoked.
115 .Pp
116 If
117 .Fa ucp
118 was initialized by the invocation of a signal handler, execution continues
119 at the point the thread was interrupted by the signal.
120 .Sh RETURN VALUES
121 If successful,
122 .Fn getcontext
123 returns zero and
124 .Fn setcontext
125 does not return; otherwise \-1 is returned.
126 The
127 .Fn getcontextx
128 returns pointer to the allocated and initialized context on success, and
129 .Va NULL
130 on failure.
131 .Sh ERRORS
132 No errors are defined for
133 .Fn getcontext
134 or
135 .Fn setcontext .
136 The
137 .Fn getcontextx
138 may return the following errors in
139 .Va errno :
140 .Bl -tag -width Er
141 .It Bq Er ENOMEM
142 No memory was available to allocate for the context or some extended state.
143 .El
144 .Sh SEE ALSO
145 .Xr sigaction 2 ,
146 .Xr sigaltstack 2 ,
147 .Xr makecontext 3 ,
148 .Xr ucontext 3
149 .Sh STANDARDS
150 The
151 .Fn getcontext
152 and
153 .Fn setcontext
154 functions conform to
155 .St -xsh5
156 and
157 .St -p1003.1-2001 .
158 The
159 .Va errno
160 indications are an extension to the standard.
161 .Pp
162 The
163 .St -p1003.1-2004
164 revision marked the functions
165 .Fn getcontext
166 and
167 .Fn setcontext
168 as obsolete, citing portability issues and recommending the use of
169 .Tn POSIX
170 threads instead.
171 The
172 .St -p1003.1-2008
173 revision removed the functions from the specification.
174 .Sh HISTORY
175 The
176 .Fn getcontext
177 and
178 .Fn setcontext
179 functions first appeared in
180 .At V.4 .