summaryrefslogtreecommitdiffstats
path: root/posix1003_1/memory_managment.rst
diff options
context:
space:
mode:
authorAmar Takhar <amar@rtems.org>2016-01-16 19:14:55 -0500
committerAmar Takhar <verm@darkbeer.org>2016-05-02 20:51:23 -0400
commitef0a063a84282f74a9da4a899c555037972873a9 (patch)
treeb49917084fd03c9d3cf0c08a1dc204298eba404b /posix1003_1/memory_managment.rst
parentFix warnings. (diff)
downloadrtems-docs-ef0a063a84282f74a9da4a899c555037972873a9.tar.bz2
Split document into seperate files by section.
Diffstat (limited to 'posix1003_1/memory_managment.rst')
-rw-r--r--posix1003_1/memory_managment.rst88
1 files changed, 88 insertions, 0 deletions
diff --git a/posix1003_1/memory_managment.rst b/posix1003_1/memory_managment.rst
new file mode 100644
index 0000000..098eecd
--- /dev/null
+++ b/posix1003_1/memory_managment.rst
@@ -0,0 +1,88 @@
+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.
+