mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-15 03:57:14 +08:00
posix1003-1, posix_users: mark mmap and shm functions implemented
Update #2859.
This commit is contained in:
parent
5ffa0722e4
commit
6543b90aa8
@ -22,8 +22,7 @@ when porting existing code from UNIX to RTEMS.
|
|||||||
- Asynchronous IO is not implemented.
|
- Asynchronous IO is not implemented.
|
||||||
- The ``flockfile()`` family is not implemented
|
- The ``flockfile()`` family is not implemented
|
||||||
- getc/putc unlocked family is not implemented
|
- getc/putc unlocked family is not implemented
|
||||||
- Shared Memory is not implemented
|
- Mapped Memory is partially implemented
|
||||||
- Mapped Memory is not implemented
|
|
||||||
- NOTES:
|
- NOTES:
|
||||||
|
|
||||||
- For Shared Memory and Mapped Memory services, it is unclear what
|
- For Shared Memory and Mapped Memory services, it is unclear what
|
||||||
|
@ -32,21 +32,21 @@ Map Process Addresses to a Memory Object
|
|||||||
|
|
||||||
.. code:: c
|
.. code:: c
|
||||||
|
|
||||||
mmap(), Function, Unimplemented
|
mmap(), Function, Implemented
|
||||||
PROT_READ, Constant, Unimplemented
|
PROT_READ, Constant, Implemented
|
||||||
PROT_WRITE, Constant, Unimplemented
|
PROT_WRITE, Constant, Implemented
|
||||||
PROT_EXEC, Constant, Unimplemented
|
PROT_EXEC, Constant, Implemented
|
||||||
PROT_NONE, Constant, Unimplemented
|
PROT_NONE, Constant, Implemented
|
||||||
MAP_SHARED, Constant, Unimplemented
|
MAP_SHARED, Constant, Implemented
|
||||||
MAP_PRIVATE, Constant, Unimplemented
|
MAP_PRIVATE, Constant, Implemented
|
||||||
MAP_FIXED, Constant, Unimplemented
|
MAP_FIXED, Constant, Implemented
|
||||||
|
|
||||||
Unmap Previously Mapped Addresses
|
Unmap Previously Mapped Addresses
|
||||||
---------------------------------
|
---------------------------------
|
||||||
|
|
||||||
.. code:: c
|
.. code:: c
|
||||||
|
|
||||||
munmap(), Function, Unimplemented
|
munmap(), Function, Implemented
|
||||||
|
|
||||||
Change Memory Protection
|
Change Memory Protection
|
||||||
------------------------
|
------------------------
|
||||||
@ -73,14 +73,14 @@ Open a Shared Memory Object
|
|||||||
|
|
||||||
.. code:: c
|
.. code:: c
|
||||||
|
|
||||||
shm_open(), Function, Unimplemented
|
shm_open(), Function, Implemented
|
||||||
|
|
||||||
Remove a Shared Memory Object
|
Remove a Shared Memory Object
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
||||||
.. code:: c
|
.. code:: c
|
||||||
|
|
||||||
shm_unlink(), Function, Unimplemented
|
shm_unlink(), Function, Implemented
|
||||||
|
|
||||||
.. COMMENT: COPYRIGHT (c) 1988-2002.
|
.. COMMENT: COPYRIGHT (c) 1988-2002.
|
||||||
|
|
||||||
|
@ -2165,21 +2165,21 @@ Map Process Addresses to a Memory Object
|
|||||||
|
|
||||||
.. code:: c
|
.. code:: c
|
||||||
|
|
||||||
mmap(), Function, Unimplemented
|
mmap(), Function, Implemented
|
||||||
PROT_READ, Constant, Unimplemented
|
PROT_READ, Constant, Implemented
|
||||||
PROT_WRITE, Constant, Unimplemented
|
PROT_WRITE, Constant, Implemented
|
||||||
PROT_EXEC, Constant, Unimplemented
|
PROT_EXEC, Constant, Implemented
|
||||||
PROT_NONE, Constant, Unimplemented
|
PROT_NONE, Constant, Implemented
|
||||||
MAP_SHARED, Constant, Unimplemented
|
MAP_SHARED, Constant, Implemented
|
||||||
MAP_PRIVATE, Constant, Unimplemented
|
MAP_PRIVATE, Constant, Implemented
|
||||||
MAP_FIXED, Constant, Unimplemented
|
MAP_FIXED, Constant, Implemented
|
||||||
|
|
||||||
Unmap Previously Mapped Addresses
|
Unmap Previously Mapped Addresses
|
||||||
---------------------------------
|
---------------------------------
|
||||||
|
|
||||||
.. code:: c
|
.. code:: c
|
||||||
|
|
||||||
munmap(), Function, Unimplemented
|
munmap(), Function, Implemented
|
||||||
|
|
||||||
Change Memory Protection
|
Change Memory Protection
|
||||||
------------------------
|
------------------------
|
||||||
@ -2206,14 +2206,14 @@ Open a Shared Memory Object
|
|||||||
|
|
||||||
.. code:: c
|
.. code:: c
|
||||||
|
|
||||||
shm_open(), Function, Unimplemented
|
shm_open(), Function, Implemented
|
||||||
|
|
||||||
Remove a Shared Memory Object
|
Remove a Shared Memory Object
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
||||||
.. code:: c
|
.. code:: c
|
||||||
|
|
||||||
shm_unlink(), Function, Unimplemented
|
shm_unlink(), Function, Implemented
|
||||||
|
|
||||||
.. COMMENT: COPYRIGHT (c) 1988-2002.
|
.. COMMENT: COPYRIGHT (c) 1988-2002.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user