source: rtems/doc/new_chapters/process.t @ aa72f36

4.104.114.84.95
Last change on this file since aa72f36 was aa72f36, checked in by Joel Sherrill <joel.sherrill@…>, on 08/01/98 at 16:35:43

New files -- automatically gnerated templates.

  • Property mode set to 100644
File size: 3.0 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 Process Creation and Execution Manager
10
11@section Introduction
12
13The
14process creation and execution manager is ...
15
16The directives provided by the process creation and execution manager are:
17
18@itemize @bullet
19@item @code{execl} -
20@item @code{execv} -
21@item @code{execle} -
22@item @code{execve} -
23@item @code{execlp} -
24@item @code{execvp} -
25@item @code{pthread_atfork} -
26@item @code{wait} -
27@item @code{waitpid} -
28@item @code{_exit} -
29@end itemize
30
31@section Background
32
33@section Operations
34
35@section Directives
36
37This section details the process creation and execution manager's directives.
38A subsection is dedicated to each of this manager's directives
39and describes the calling sequence, related constants, usage,
40and status codes.
41
42@page
43@subsection execl - XXX
44
45@subheading CALLING SEQUENCE:
46
47@ifset is-C
48@example
49int execl(
50);
51@end example
52@end ifset
53
54@ifset is-Ada
55@end ifset
56
57@subheading STATUS CODES:
58
59@subheading DESCRIPTION:
60
61@subheading NOTES:
62
63@page
64@subsection execv - XXX
65
66@subheading CALLING SEQUENCE:
67
68@ifset is-C
69@example
70int execv(
71);
72@end example
73@end ifset
74
75@ifset is-Ada
76@end ifset
77
78@subheading STATUS CODES:
79
80@subheading DESCRIPTION:
81
82@subheading NOTES:
83
84@page
85@subsection execle - XXX
86
87@subheading CALLING SEQUENCE:
88
89@ifset is-C
90@example
91int execle(
92);
93@end example
94@end ifset
95
96@ifset is-Ada
97@end ifset
98
99@subheading STATUS CODES:
100
101@subheading DESCRIPTION:
102
103@subheading NOTES:
104
105@page
106@subsection execve - XXX
107
108@subheading CALLING SEQUENCE:
109
110@ifset is-C
111@example
112int execve(
113);
114@end example
115@end ifset
116
117@ifset is-Ada
118@end ifset
119
120@subheading STATUS CODES:
121
122@subheading DESCRIPTION:
123
124@subheading NOTES:
125
126@page
127@subsection execlp - XXX
128
129@subheading CALLING SEQUENCE:
130
131@ifset is-C
132@example
133int execlp(
134);
135@end example
136@end ifset
137
138@ifset is-Ada
139@end ifset
140
141@subheading STATUS CODES:
142
143@subheading DESCRIPTION:
144
145@subheading NOTES:
146
147@page
148@subsection execvp - XXX
149
150@subheading CALLING SEQUENCE:
151
152@ifset is-C
153@example
154int execvp(
155);
156@end example
157@end ifset
158
159@ifset is-Ada
160@end ifset
161
162@subheading STATUS CODES:
163
164@subheading DESCRIPTION:
165
166@subheading NOTES:
167
168@page
169@subsection pthread_atfork - XXX
170
171@subheading CALLING SEQUENCE:
172
173@ifset is-C
174@example
175int pthread_atfork(
176);
177@end example
178@end ifset
179
180@ifset is-Ada
181@end ifset
182
183@subheading STATUS CODES:
184
185@subheading DESCRIPTION:
186
187@subheading NOTES:
188
189@page
190@subsection wait - XXX
191
192@subheading CALLING SEQUENCE:
193
194@ifset is-C
195@example
196int wait(
197);
198@end example
199@end ifset
200
201@ifset is-Ada
202@end ifset
203
204@subheading STATUS CODES:
205
206@subheading DESCRIPTION:
207
208@subheading NOTES:
209
210@page
211@subsection waitpid - XXX
212
213@subheading CALLING SEQUENCE:
214
215@ifset is-C
216@example
217int waitpid(
218);
219@end example
220@end ifset
221
222@ifset is-Ada
223@end ifset
224
225@subheading STATUS CODES:
226
227@subheading DESCRIPTION:
228
229@subheading NOTES:
230
231@page
232@subsection _exit - XXX
233
234@subheading CALLING SEQUENCE:
235
236@ifset is-C
237@example
238int _exit(
239);
240@end example
241@end ifset
242
243@ifset is-Ada
244@end ifset
245
246@subheading STATUS CODES:
247
248@subheading DESCRIPTION:
249
250@subheading NOTES:
251
Note: See TracBrowser for help on using the repository browser.