xref: /minix3/lib/libc/sys/getcontext.2 (revision 2fe8fb192fe7e8720e3e7a77f928da545e872a6a)
1*2fe8fb19SBen Gras.\"	$NetBSD: getcontext.2,v 1.7 2010/04/29 06:07:35 jruoho Exp $
2*2fe8fb19SBen Gras.\"
3*2fe8fb19SBen Gras.\" Copyright (c) 1999 The NetBSD Foundation, Inc.
4*2fe8fb19SBen Gras.\" All rights reserved.
5*2fe8fb19SBen Gras.\"
6*2fe8fb19SBen Gras.\" This code is derived from software contributed to The NetBSD Foundation
7*2fe8fb19SBen Gras.\" by Klaus Klein.
8*2fe8fb19SBen Gras.\"
9*2fe8fb19SBen Gras.\" Redistribution and use in source and binary forms, with or without
10*2fe8fb19SBen Gras.\" modification, are permitted provided that the following conditions
11*2fe8fb19SBen Gras.\" are met:
12*2fe8fb19SBen Gras.\" 1. Redistributions of source code must retain the above copyright
13*2fe8fb19SBen Gras.\"    notice, this list of conditions and the following disclaimer.
14*2fe8fb19SBen Gras.\" 2. Redistributions in binary form must reproduce the above copyright
15*2fe8fb19SBen Gras.\"    notice, this list of conditions and the following disclaimer in the
16*2fe8fb19SBen Gras.\"    documentation and/or other materials provided with the distribution.
17*2fe8fb19SBen Gras.\"
18*2fe8fb19SBen Gras.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19*2fe8fb19SBen Gras.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20*2fe8fb19SBen Gras.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21*2fe8fb19SBen Gras.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22*2fe8fb19SBen Gras.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23*2fe8fb19SBen Gras.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24*2fe8fb19SBen Gras.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25*2fe8fb19SBen Gras.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26*2fe8fb19SBen Gras.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27*2fe8fb19SBen Gras.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28*2fe8fb19SBen Gras.\" POSSIBILITY OF SUCH DAMAGE.
29*2fe8fb19SBen Gras.\"
30*2fe8fb19SBen Gras.Dd April 28, 2010
31*2fe8fb19SBen Gras.Dt GETCONTEXT 2
32*2fe8fb19SBen Gras.Os
33*2fe8fb19SBen Gras.Sh NAME
34*2fe8fb19SBen Gras.Nm getcontext ,
35*2fe8fb19SBen Gras.Nm setcontext
36*2fe8fb19SBen Gras.Nd get and set current user context
37*2fe8fb19SBen Gras.Sh LIBRARY
38*2fe8fb19SBen Gras.Lb libc
39*2fe8fb19SBen Gras.Sh SYNOPSIS
40*2fe8fb19SBen Gras.In ucontext.h
41*2fe8fb19SBen Gras.Ft int
42*2fe8fb19SBen Gras.Fn getcontext "ucontext_t *ucp"
43*2fe8fb19SBen Gras.Ft int
44*2fe8fb19SBen Gras.Fn setcontext "const ucontext_t *ucp"
45*2fe8fb19SBen Gras.Sh DESCRIPTION
46*2fe8fb19SBen GrasThe
47*2fe8fb19SBen Gras.Fn getcontext
48*2fe8fb19SBen Grasfunction initializes the object pointed to by
49*2fe8fb19SBen Gras.Fa ucp
50*2fe8fb19SBen Grasto the current user context of the calling thread.
51*2fe8fb19SBen GrasThe user context defines a thread's execution environment and includes
52*2fe8fb19SBen Grasthe contents of its machine registers,
53*2fe8fb19SBen Grasits signal mask,
54*2fe8fb19SBen Grasand its current execution stack.
55*2fe8fb19SBen Gras.Pp
56*2fe8fb19SBen GrasThe
57*2fe8fb19SBen Gras.Fn setcontext
58*2fe8fb19SBen Grasfunction restores the user context defined in the object pointed to by
59*2fe8fb19SBen Gras.Fa ucp
60*2fe8fb19SBen Grasas most recently initialized by a previous call to either
61*2fe8fb19SBen Gras.Fn getcontext
62*2fe8fb19SBen Grasor
63*2fe8fb19SBen Gras.Xr makecontext 3 .
64*2fe8fb19SBen Gras.\" TODO: signal handler
65*2fe8fb19SBen GrasIf successful, execution of the program resumes as defined in the
66*2fe8fb19SBen Gras.Fa ucp
67*2fe8fb19SBen Grasargument, and
68*2fe8fb19SBen Gras.Fn setcontext
69*2fe8fb19SBen Graswill not return.
70*2fe8fb19SBen GrasIf
71*2fe8fb19SBen Gras.Fa ucp
72*2fe8fb19SBen Graswas initialized by the
73*2fe8fb19SBen Gras.Fn getcontext
74*2fe8fb19SBen Grasfunction, program execution continues as if the corresponding invocation of
75*2fe8fb19SBen Gras.Fn getcontext
76*2fe8fb19SBen Grashad just returned (successfully).
77*2fe8fb19SBen GrasIf
78*2fe8fb19SBen Gras.Fa ucp
79*2fe8fb19SBen Graswas initialized by the
80*2fe8fb19SBen Gras.Xr makecontext 3
81*2fe8fb19SBen Grasfunction, program execution continues with the function (and function
82*2fe8fb19SBen Grasarguments) passed to
83*2fe8fb19SBen Gras.Xr makecontext 3 .
84*2fe8fb19SBen Gras.Sh RETURN VALUES
85*2fe8fb19SBen GrasOn successful completion,
86*2fe8fb19SBen Gras.Fn getcontext
87*2fe8fb19SBen Grasreturns 0 and
88*2fe8fb19SBen Gras.Fn setcontext
89*2fe8fb19SBen Grasdoes not return.
90*2fe8fb19SBen GrasOtherwise a value of \-1 is returned and
91*2fe8fb19SBen Gras.Va errno
92*2fe8fb19SBen Grasis set to indicate the error.
93*2fe8fb19SBen Gras.Sh ERRORS
94*2fe8fb19SBen GrasThe
95*2fe8fb19SBen Gras.Fn getcontext
96*2fe8fb19SBen Grasand
97*2fe8fb19SBen Gras.Fn setcontext
98*2fe8fb19SBen Grasfunctions will fail if:
99*2fe8fb19SBen Gras.Bl -tag -width Er
100*2fe8fb19SBen Gras.It Bq Er EFAULT
101*2fe8fb19SBen GrasThe
102*2fe8fb19SBen Gras.Fa ucp
103*2fe8fb19SBen Grasargument points to an invalid address.
104*2fe8fb19SBen Gras.El
105*2fe8fb19SBen Gras.Pp
106*2fe8fb19SBen GrasThe
107*2fe8fb19SBen Gras.Fn setcontext
108*2fe8fb19SBen Grasfunction will fail if:
109*2fe8fb19SBen Gras.Bl -tag -width Er
110*2fe8fb19SBen Gras.It Bq Er EINVAL
111*2fe8fb19SBen GrasThe contents of the datum pointed to by
112*2fe8fb19SBen Gras.Fa ucp
113*2fe8fb19SBen Grasare invalid.
114*2fe8fb19SBen Gras.El
115*2fe8fb19SBen Gras.Sh SEE ALSO
116*2fe8fb19SBen Gras.Xr sigprocmask 2 ,
117*2fe8fb19SBen Gras.Xr longjmp 3 ,
118*2fe8fb19SBen Gras.Xr makecontext 3 ,
119*2fe8fb19SBen Gras.Xr setjmp 3 ,
120*2fe8fb19SBen Gras.Xr swapcontext 3
121*2fe8fb19SBen Gras.Sh STANDARDS
122*2fe8fb19SBen GrasThe
123*2fe8fb19SBen Gras.Fn getcontext
124*2fe8fb19SBen Grasand
125*2fe8fb19SBen Gras.Fn setcontext
126*2fe8fb19SBen Grasfunctions conform to
127*2fe8fb19SBen Gras.St -xsh5
128*2fe8fb19SBen Grasand
129*2fe8fb19SBen Gras.St -p1003.1-2001 .
130*2fe8fb19SBen GrasThe
131*2fe8fb19SBen Gras.Va errno
132*2fe8fb19SBen Grasindications are an extension to the standard.
133*2fe8fb19SBen Gras.Pp
134*2fe8fb19SBen GrasThe
135*2fe8fb19SBen Gras.St -p1003.1-2004
136*2fe8fb19SBen Grasrevision marked the functions
137*2fe8fb19SBen Gras.Fn getcontext
138*2fe8fb19SBen Grasand
139*2fe8fb19SBen Gras.Fn setcontext
140*2fe8fb19SBen Grasas obsolete, citing portability issues and recommending the use of
141*2fe8fb19SBen Gras.Tn POSIX
142*2fe8fb19SBen Grasthreads instead.
143*2fe8fb19SBen GrasThe
144*2fe8fb19SBen Gras.St -p1003.1-2008
145*2fe8fb19SBen Grasrevision removed the functions from the specification.
146*2fe8fb19SBen Gras.Sh HISTORY
147*2fe8fb19SBen GrasThe
148*2fe8fb19SBen Gras.Fn getcontext
149*2fe8fb19SBen Grasand
150*2fe8fb19SBen Gras.Fn setcontext
151*2fe8fb19SBen Grasfunctions first appeared in
152*2fe8fb19SBen Gras.At V.4 .
153