summaryrefslogtreecommitdiffstats
path: root/posix1003-1/memory_managment.rst
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2017-08-28 13:03:40 -0500
committerJoel Sherrill <joel@rtems.org>2017-10-12 20:25:13 -0500
commit2c3cf2166dd35152bb006d027476400be8759615 (patch)
treec9bde69e8015ae32d259a962694187d742a8ea0b /posix1003-1/memory_managment.rst
parentShorten BSP and Driver Guide name (missed commit) (diff)
downloadrtems-docs-2c3cf2166dd35152bb006d027476400be8759615.tar.bz2
New version of POSIX Compliance Guide
This is a replacement of the POSIX 1003.1 Compliance Guide. It will be generated from a .csv file. Updates #3177.
Diffstat (limited to 'posix1003-1/memory_managment.rst')
-rw-r--r--posix1003-1/memory_managment.rst90
1 files changed, 0 insertions, 90 deletions
diff --git a/posix1003-1/memory_managment.rst b/posix1003-1/memory_managment.rst
deleted file mode 100644
index de7389f..0000000
--- a/posix1003-1/memory_managment.rst
+++ /dev/null
@@ -1,90 +0,0 @@
-.. 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, Implemented
- PROT_READ, Constant, Implemented
- PROT_WRITE, Constant, Implemented
- PROT_EXEC, Constant, Implemented
- PROT_NONE, Constant, Implemented
- MAP_SHARED, Constant, Implemented
- MAP_PRIVATE, Constant, Implemented
- MAP_FIXED, Constant, Implemented
-
-Unmap Previously Mapped Addresses
----------------------------------
-
-.. code:: c
-
- munmap(), Function, Implemented
-
-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, Implemented
-
-Remove a Shared Memory Object
------------------------------
-
-.. code:: c
-
- shm_unlink(), Function, Implemented
-
-.. COMMENT: COPYRIGHT (c) 1988-2002.
-
-.. COMMENT: On-Line Applications Research Corporation (OAR).
-
-.. COMMENT: All rights reserved.
-