Also build+install csu in the world stage.
[dragonfly.git] / lib / libc / gen / ucontext.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 .\" $FreeBSD: src/lib/libc/gen/ucontext.3,v 1.1.2.1 2002/09/15 00:30:45 archie Exp $
37 .\" $DragonFly: src/lib/libc/gen/ucontext.3,v 1.5 2006/07/22 18:49:25 swildner Exp $
38 .\"
39 .Dd September 10, 2002
40 .Dt UCONTEXT 3
41 .Os
42 .Sh NAME
43 .Nm ucontext
44 .Nd user thread context
45 .Sh LIBRARY
46 .Lb libc
47 .Sh SYNOPSIS
48 .In ucontext.h
49 .Sh DESCRIPTION
50 The
51 .Vt ucontext_t
52 type is a structure type suitable for holding the context for a user
53 thread of execution.
54 A thread's context includes its stack, saved registers, and list of
55 blocked signals.
56 .Pp
57 The
58 .Vt ucontext_t
59 structure contains at least these fields:
60 .Bl -tag -compact -offset 3n -width "mcontext_t  uc_mcontext"
61 .Pp
62 .It "ucontext_t *uc_link"
63 Context to assume when this one returns
64 .It "sigset_t    uc_sigmask"
65 Signals being blocked
66 .It "stack_t     uc_stack"
67 Stack area
68 .It "mcontext_t  uc_mcontext"
69 Saved registers
70 .El
71 .Pp
72 The
73 .Fa uc_link
74 field points to the context to resume when this context's entry point
75 function returns.
76 If
77 .Fa uc_link
78 is equal to
79 .Dv NULL ,
80 then the process exits when this context returns.
81 .Pp
82 The
83 .Fa uc_mcontext
84 field is machine-dependent and should be treated as opaque by
85 portable applications.
86 .Sh SEE ALSO
87 .Xr sigaltstack 2
88 .Sh BUGS
89 The
90 .Fn getcontext ,
91 .Fn setcontext ,
92 .Fn makecontext ,
93 and
94 .Fn swapcontext
95 functions are not yet implemented in this version of
96 .Dx .