MMAN.H(7) Miscellaneous Information Manual MMAN.H(7)

sys/mman.hmemory management declarations

#include <sys/mman.h>

The <sys/mman.h> header shall be supported if the implementation supports at least one of the following options:

  • The Memory Mapped Files option
  • The Shared Memory Objects option
  • The Process Memory Locking option
  • The Memory Protection option
  • The Typed Memory Objects option
  • The Synchronized Input and Output option
  • The Advisory Information option

If one or more of the Advisory Information, Memory Mapped Files, or Shared Memory Objects options are supported, the following protection options shall be defined:

[MC2] Page can be read.
[MC2] Page can be written.
[MC2] Page can be executed.
[MC2] Page cannot be accessed.

The following options shall be defined:

[MF|SHM] Share changes.
[MF|SHM] Changes are private.
[MF|SHM] Interpret addr exactly.

The following flags shall be defined for msync(3):

[MF|SIO] Perform asynchronous writes.
[MF|SIO] Perform synchronous writes.
[MF|SIO] Invalidate mappings.

[ML] The following symbolic constants shall be defined for the mlockall(3) function:

[ML] Lock currently mapped pages.
[ML] Lock pages that become mapped.

The symbolic constant MAP_FAILED shall be defined to indicate a failure from the mmap(3) function.

If the Advisory Information and either the Memory Mapped Files or Shared Memory Objects options are supported, values for used by posix_madvise(3) shall be defined as follows:


The application has no advice to give on its behavior with respect to the specified range. It is the default characteristic if no advice is given for a range of memory.

The application expects to access the specified range sequentially from lower addresses to higher addresses.

The application expects to access the specified range in a random order.

The application expects to access the specified range in the near future.

The application expects that it will not access the specified range in the near future.

[TYM] The following flags shall be defined for posix_typed_mem_open(3):


Allocate on mmap () .

Allocate contiguously on mmap () .

Map on mmap () , without affecting allocatability.

The , , and types shall be defined as described in <sys/types.h>.

[TYM] The <sys/mman.h> header shall define the structure , which includes at least the following member:

size_t  posix_tmi_length  Maximum length which may be allocated
                          from a typed memory object.

The following shall be declared as functions and may also be defined as macros. Function prototypes shall be provided.

[MLR]
int    mlock(const void *, size_t);

[ML]
int    mlockall(int);

[MC3]
void  *mmap(void *, size_t, int, int, int, off_t);

[MPR]
int    mprotect(void *, size_t, int);

[MF|SIO]
int    msync(void *, size_t, int);

[MLR]
int    munlock(const void *, size_t);

[ML]
int    munlockall(void);

[MC3]
int    munmap(void *, size_t);

[ADV]
int    posix_madvise(void *, size_t, int);

[TYM]
int    posix_mem_offset(const void *restrict, size_t, off_t *restrict,
           size_t *restrict, int *restrict);
int    posix_typed_mem_get_info(int, struct posix_typed_mem_info *);
int    posix_typed_mem_open(const char *, int, int);

[SHM]
int    shm_open(const char *, int, mode_t);
int    shm_unlink(const char *);

None.

None.

None.

<sys/types.h>, the System Interfaces volume of IEEE Std 1003.1-2001 (“POSIX.1”), mlock(3), mlockall(3), mmap(3), mprotect(3), msync(3), munlock(3), munlockall(3), munmap(3), posix_mem_offset(3), posix_typed_mem_get_info(3), posix_typed_mem_open(3), shm_open(3), shm_unlink(3)

First released in Issue 4, Version 2.

Updated for alignment with the POSIX Realtime Extension.

The <sys/mman.h> header is marked as dependent on support for either the Memory Mapped Files, Process Memory Locking, or Shared Memory Objects options.

The following changes are made for alignment with IEEE Std 1003.1j-2000:

The keyword is added to the prototype for posix_mem_offset(3).

IEEE PASC Interpretation 1003.1 #102 is applied, adding the prototype for posix_madvise(3).

IEEE Std 1003.1-2001 (“POSIX.1”)/Cor 1-2002, item XBD/TC1/D6/16 is applied, correcting margin code and shading errors for the mlock(3) and munlock(3) functions.

IEEE Std 1003.1-2001 (“POSIX.1”)/Cor 1-2002, item XSH/TC1/D6/34 is applied, changing the margin code for the mmap(3) function from MF|SHM to MC3 (notation for MF|SHM|TYM).

IEEE Std 1003.1-2001 (“POSIX.1”)/Cor 1-2002, item XSH/TC1/D6/36 is applied, changing the margin code for the munmap(3) function from MF|SHM to MC3 (notation for MF|SHM|TYM).

footer end

January 1, 2004 posix.fail