13. Memory Management Manager¶
13.1. Introduction¶
The memory management manager is …
The directives provided by the memory management manager are:
mlockall - Lock the Address Space of a Process
munlockall - Unlock the Address Space of a Process
mlock - Lock a Range of the Process Address Space
munlock - Unlock a Range of the Process Address Space
mmap - Map Process Addresses to a Memory Object
munmap - Unmap Previously Mapped Addresses
mprotect - Change Memory Protection
msync - Memory Object Synchronization
shm_open - Open a Shared Memory Object
shm_unlink - Remove a Shared Memory Object
13.2. Background¶
There is currently no text in this section.
13.3. Operations¶
There is currently no text in this section.
13.4. Directives¶
This section details the memory management manager’s directives. A subsection is dedicated to each of this manager’s directives and describes the calling sequence, related constants, usage, and status codes.
13.4.1. mlockall - Lock the Address Space of a Process¶
CALLING SEQUENCE:
#include <sys/mman.h>
int mlockall(
int flags
);
STATUS CODES:
|
The |
DESCRIPTION:
NOTES:
13.4.2. munlockall - Unlock the Address Space of a Process¶
CALLING SEQUENCE:
#include <sys/mman.h>
int munlockall(
void
);
STATUS CODES:
|
The |
DESCRIPTION:
NOTES:
13.4.3. mlock - Lock a Range of the Process Address Space¶
CALLING SEQUENCE:
#include <sys/mman.h>
int mlock(
const void *addr,
size_t len
);
STATUS CODES:
|
The |
DESCRIPTION:
NOTES:
13.4.4. munlock - Unlock a Range of the Process Address Space¶
CALLING SEQUENCE:
#include <sys/mman.h>
int munlock(
const void *addr,
size_t len
);
STATUS CODES:
|
The |
DESCRIPTION:
NOTES:
13.4.5. mmap - Map Process Addresses to a Memory Object¶
CALLING SEQUENCE:
#include <sys/mman.h>
void *mmap(
void *addr,
size_t len,
int prot,
int flags,
int fildes,
off_t off
);
STATUS CODES:
|
The fildes argument is not a valid open file descriptor. |
|
The value of len is zero. |
|
The value of flags is invalid (neither MAP_PRIVATE nor MAP_SHARED is set). |
|
The addr argument (if MAP_FIXED was specified) or off is not a multiple of the page size as returned by sysconf(), or is considered invalid by the implementation. |
|
The fildes argument refers to a file whose type is not supported by mmap. |
|
MAP_FIXED was specified, and the range [addr,addr+len) exceeds that allowed for the address space of a process; or, if MAP_FIXED was not specified and there is insufficient room in the address space to effect the mapping. |
|
MAP_FIXED or MAP_PRIVATE was specified in the flags argument and the implementation does not support this functionality. |
|
The implementation does not support the combination of accesses requested in the prot argument. |
|
Addresses in the range [off,off+len) are invalid for the object specified by fildes. |
|
MAP_FIXED was specified in flags and the combination of addr, len, and off is invalid for the object specified by fildes. |
|
The file is a regular file and the value of off plus len exceeds the offset maximum established in the open file description associated with fildes. |
DESCRIPTION:
mmap
establishes a mapping between an address pa
for len
bytes to
the memory object represented by the file descriptor fildes
at offset
off
for len
bytes. The value of pa
is an implementation-defined
function of the parameter addr and the values of flags
. A successful
mmap()
call shall return pa
as its result. An unsuccessful call returns
MAP_FAILED
and sets errno
accordingly.
NOTES:
RTEMS is a single address space operating system without privilege separation
between the kernel and user space. Therefore, the implementation of mmap
has a number of implementation-specific issues to be aware of:
Read, write and execute permissions are allowed because the memory in RTEMS does not normally have protections but we cannot hide access to memory. Thus, the use of
PROT_NONE
for theprot
argument is not supported. Similarly, there is no restriction of write access, soPROT_WRITE
must be in theprot
argument.Anonymous mappings must have
fildes
set to -1 andoff
set to 0. Shared mappings are not supported with Anonymous mappings.
MAP_FIXED
is not supported for shared memory objects withMAP_SHARED
.Support for shared mappings is dependent on the underlying object’s filesystem implementation of an
mmap_h
file operation handler.
13.4.6. munmap - Unmap Previously Mapped Addresses¶
CALLING SEQUENCE:
#include <sys/mman.h>
int munmap(
void *addr,
size_t len
);
STATUS CODES:
|
Addresses in the range [addr,addr+len) are outside the valid range for the address space. |
|
The len argument is 0. |
DESCRIPTION:
The munmap()
function shall remove any mappings for those entire pages
containing any part of the address space of the process starting at addr
and continuing for len
bytes. If there are no mappings in the specified
address range, then munmap()
has no effect.
Upon successful completion, munmap()
shall return 0; otherwise, it shall
return -1 and set errno
to indicate the error.
NOTES:
13.4.7. mprotect - Change Memory Protection¶
CALLING SEQUENCE:
#include <sys/mman.h>
int mprotect(
void *addr,
size_t len,
int prot
);
STATUS CODES:
|
The |
DESCRIPTION:
NOTES:
13.4.8. msync - Memory Object Synchronization¶
CALLING SEQUENCE:
#include <sys/mman.h>
int msync(
void *addr,
size_t len,
int flags
);
STATUS CODES:
|
The |
DESCRIPTION:
NOTES: