source: rtems-docs/posix1003_1/memory_managment.rst @ 9aafb39

4.115
Last change on this file since 9aafb39 was 489740f, checked in by Chris Johns <chrisj@…>, on 05/20/16 at 02:47:09

Set SPDX License Identifier in each source file.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1.. comment SPDX-License-Identifier: CC-BY-SA-4.0
2
3Memory Management
4#################
5
6Memory Locking Functions
7========================
8
9Lock/Unlock the Address Space of a Process
10------------------------------------------
11
12.. code:: c
13
14    mlockall(), Function, Unimplemented
15    munlockall(), Function, Unimplemented
16    MCL_CURRENT, Constant, Unimplemented
17    MCL_FUTURE, Constant,  Unimplemented
18
19Lock/Unlock a Rand of Process Address Space
20-------------------------------------------
21
22.. code:: c
23
24    mlock(), Function, Unimplemented
25    munlock(), Function, Unimplemented
26
27Memory Mapping Functions
28========================
29
30Map Process Addresses to a Memory Object
31----------------------------------------
32
33.. code:: c
34
35    mmap(), Function, Unimplemented
36    PROT_READ, Constant,  Unimplemented
37    PROT_WRITE, Constant,  Unimplemented
38    PROT_EXEC, Constant,  Unimplemented
39    PROT_NONE, Constant,  Unimplemented
40    MAP_SHARED, Constant,  Unimplemented
41    MAP_PRIVATE, Constant,  Unimplemented
42    MAP_FIXED, Constant,  Unimplemented
43
44Unmap Previously Mapped Addresses
45---------------------------------
46
47.. code:: c
48
49    munmap(), Function, Unimplemented
50
51Change Memory Protection
52------------------------
53
54.. code:: c
55
56    mprotect(), Function, Unimplemented
57
58Memory Object Synchronization
59-----------------------------
60
61.. code:: c
62
63    msync(), Function, Unimplemented, Unimplemented
64    MS_ASYNC, Constant, Unimplemented
65    MS_SYNC, Constant,  Unimplemented
66    MS_INVALIDATE, Constant,  Unimplemented
67
68Shared Memory Functions
69=======================
70
71Open a Shared Memory Object
72---------------------------
73
74.. code:: c
75
76    shm_open(), Function, Unimplemented
77
78Remove a Shared Memory Object
79-----------------------------
80
81.. code:: c
82
83    shm_unlink(), Function, Unimplemented
84
85.. COMMENT: COPYRIGHT (c) 1988-2002.
86
87.. COMMENT: On-Line Applications Research Corporation (OAR).
88
89.. COMMENT: All rights reserved.
90
Note: See TracBrowser for help on using the repository browser.