source: rtems/doc/new_chapters/confspace.t @ 7fc5d54e

4.104.114.84.95
Last change on this file since 7fc5d54e was 832e33c, checked in by Joel Sherrill <joel.sherrill@…>, on 08/03/98 at 18:30:21

Added many new chapters

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