source: rtems/doc/new_chapters/memorymgmt.t @ 241e4c7c

4.104.114.84.95
Last change on this file since 241e4c7c was 241e4c7c, checked in by Joel Sherrill <joel.sherrill@…>, on 09/29/98 at 00:04:53

Added sentence to indicate sections were deliberately empty.

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