summaryrefslogtreecommitdiffstats
path: root/posix1003_1/memory_managment.rst
blob: e769fafa86dd262c2ffaaf0510f08ef74f23311f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
.. comment SPDX-License-Identifier: CC-BY-SA-4.0

Memory Management
#################

Memory Locking Functions
========================

Lock/Unlock the Address Space of a Process
------------------------------------------

.. code:: c

    mlockall(), Function, Unimplemented
    munlockall(), Function, Unimplemented
    MCL_CURRENT, Constant, Unimplemented
    MCL_FUTURE, Constant,  Unimplemented

Lock/Unlock a Rand of Process Address Space
-------------------------------------------

.. code:: c

    mlock(), Function, Unimplemented
    munlock(), Function, Unimplemented

Memory Mapping Functions
========================

Map Process Addresses to a Memory Object
----------------------------------------

.. code:: c

    mmap(), Function, Unimplemented
    PROT_READ, Constant,  Unimplemented
    PROT_WRITE, Constant,  Unimplemented
    PROT_EXEC, Constant,  Unimplemented
    PROT_NONE, Constant,  Unimplemented
    MAP_SHARED, Constant,  Unimplemented
    MAP_PRIVATE, Constant,  Unimplemented
    MAP_FIXED, Constant,  Unimplemented

Unmap Previously Mapped Addresses
---------------------------------

.. code:: c

    munmap(), Function, Unimplemented

Change Memory Protection
------------------------

.. code:: c

    mprotect(), Function, Unimplemented

Memory Object Synchronization
-----------------------------

.. code:: c

    msync(), Function, Unimplemented, Unimplemented
    MS_ASYNC, Constant, Unimplemented
    MS_SYNC, Constant,  Unimplemented
    MS_INVALIDATE, Constant,  Unimplemented

Shared Memory Functions
=======================

Open a Shared Memory Object
---------------------------

.. code:: c

    shm_open(), Function, Unimplemented

Remove a Shared Memory Object
-----------------------------

.. code:: c

    shm_unlink(), Function, Unimplemented

.. COMMENT: COPYRIGHT (c) 1988-2002.

.. COMMENT: On-Line Applications Research Corporation (OAR).

.. COMMENT: All rights reserved.