source: rtems/doc/posix1003.1/ch12.t @ 3664547d

4.104.114.84.95
Last change on this file since 3664547d was 6449498, checked in by Joel Sherrill <joel.sherrill@…>, on 01/17/02 at 21:47:47

2001-01-17 Joel Sherrill <joel@…>

  • SUPPORT, LICENSE: New files.
  • Numerous files touched as part of merging the 4.5 branch onto the mainline development trunk and ensuring that the script that cuts snapshots and releases works on the documentation.
  • Property mode set to 100644
File size: 1.6 KB
Line 
1@c
2@c  COPYRIGHT (c) 1988-2002.
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
10
11@section Memory Locking Functions
12
13@subsection Lock/Unlock the Address Space of a Process
14
15@example
16mlockall(), Function, Unimplemented
17munlockall(), Function, Unimplemented
18MCL_CURRENT, Constant, Unimplemented
19MCL_FUTURE, Constant,  Unimplemented
20@end example
21
22@subsection Lock/Unlock a Rand of Process Address Space
23
24@example
25mlock(), Function, Unimplemented
26munlock(), Function, Unimplemented
27@end example
28
29@section Memory Mapping Functions
30
31@subsection Map Process Addresses to a Memory Object
32
33@example
34mmap(), Function, Unimplemented
35PROT_READ, Constant,  Unimplemented
36PROT_WRITE, Constant,  Unimplemented
37PROT_EXEC, Constant,  Unimplemented
38PROT_NONE, Constant,  Unimplemented
39MAP_SHARED, Constant,  Unimplemented
40MAP_PRIVATE, Constant,  Unimplemented
41MAP_FIXED, Constant,  Unimplemented
42@end example
43
44@subsection Unmap Previously Mapped Addresses
45
46@example
47munmap(), Function, Unimplemented
48@end example
49
50@subsection Change Memory Protection
51
52@example
53mprotect(), Function, Unimplemented
54@end example
55
56@subsection Memory Object Synchronization
57
58@example
59msync(), Function, Unimplemented, Unimplemented
60MS_ASYNC, Constant, Unimplemented
61MS_SYNC, Constant,  Unimplemented
62MS_INVALIDATE, Constant,  Unimplemented
63@end example
64
65@section Shared Memory Functions
66
67@subsection Open a Shared Memory Object
68
69@example
70shm_open(), Function, Unimplemented
71@end example
72
73@subsection Remove a Shared Memory Object
74
75@example
76shm_unlink(), Function, Unimplemented
77@end example
Note: See TracBrowser for help on using the repository browser.