source: rtems/doc/new_chapters/cancel.t @ 16bed8a

4.104.114.84.95
Last change on this file since 16bed8a was 16bed8a, checked in by Joel Sherrill <joel.sherrill@…>, on 08/04/98 at 19:25:14

More complete shells generated.

  • Property mode set to 100644
File size: 2.1 KB
Line 
1@c
2@c  COPYRIGHT (c) 1988-1998.
3@c  On-Line Applications Research Corporation (OAR).
4@c  All rights reserved.
5@c
6@c  $Id$
7@c
8
9@chapter Thread Cancellation Manager
10
11@section Introduction
12
13The
14thread cancellation manager is ...
15
16The directives provided by the thread cancellation manager are:
17
18@itemize @bullet
19@item @code{pthread_cancel} -
20@item @code{pthread_setcancelstate} -
21@item @code{pthread_setcanceltype} -
22@item @code{pthread_testcancel} -
23@item @code{pthread_cleanup_push} -
24@end itemize
25
26@section Background
27
28@section Operations
29
30@section Directives
31
32This section details the thread cancellation manager's directives.
33A subsection is dedicated to each of this manager's directives
34and describes the calling sequence, related constants, usage,
35and status codes.
36
37@page
38@subsection pthread_cancel -
39
40@subheading CALLING SEQUENCE:
41
42@ifset is-C
43@example
44int pthread_cancel(
45);
46@end example
47@end ifset
48
49@ifset is-Ada
50@end ifset
51
52@subheading STATUS CODES:
53
54@table @b
55@item E
56The
57
58@end table
59
60@subheading DESCRIPTION:
61
62@subheading NOTES:
63
64@page
65@subsection pthread_setcancelstate -
66
67@subheading CALLING SEQUENCE:
68
69@ifset is-C
70@example
71int pthread_setcancelstate(
72);
73@end example
74@end ifset
75
76@ifset is-Ada
77@end ifset
78
79@subheading STATUS CODES:
80
81@table @b
82@item E
83The
84
85@end table
86
87@subheading DESCRIPTION:
88
89@subheading NOTES:
90
91@page
92@subsection pthread_setcanceltype -
93
94@subheading CALLING SEQUENCE:
95
96@ifset is-C
97@example
98int pthread_setcanceltype(
99);
100@end example
101@end ifset
102
103@ifset is-Ada
104@end ifset
105
106@subheading STATUS CODES:
107
108@table @b
109@item E
110The
111
112@end table
113
114@subheading DESCRIPTION:
115
116@subheading NOTES:
117
118@page
119@subsection pthread_testcancel -
120
121@subheading CALLING SEQUENCE:
122
123@ifset is-C
124@example
125int pthread_testcancel(
126);
127@end example
128@end ifset
129
130@ifset is-Ada
131@end ifset
132
133@subheading STATUS CODES:
134
135@table @b
136@item E
137The
138
139@end table
140
141@subheading DESCRIPTION:
142
143@subheading NOTES:
144
145@page
146@subsection pthread_cleanup_push -
147
148@subheading CALLING SEQUENCE:
149
150@ifset is-C
151@example
152int pthread_cleanup_push(
153);
154@end example
155@end ifset
156
157@ifset is-Ada
158@end ifset
159
160@subheading STATUS CODES:
161
162@table @b
163@item E
164The
165
166@end table
167
168@subheading DESCRIPTION:
169
170@subheading NOTES:
171
Note: See TracBrowser for help on using the repository browser.