Member Name | Description |
---|
MAP_ANON | Map anonymous memory not associated with any specific
file. The file descriptor used for creating MAP_ANON
must be -1. The offset argument is ignored.
[Edit]
|
MAP_ANONYMOUS | Documentation for this section has not yet been entered.
[Edit]
|
MAP_DENYWRITE | Documentation for this section has not yet been entered.
[Edit]
|
MAP_EXECUTABLE | Documentation for this section has not yet been entered.
[Edit]
|
MAP_FILE | Documentation for this section has not yet been entered.
[Edit]
|
MAP_FIXED | Do not permit the system to select a different address than
the one specified. If the specified address cannot be used,
Syscall.mmap will fail. If
MAP_FIXED is specified, addr must be a
multiple of the pagesize. Use of this option is discouraged.
[Edit]
|
MAP_GROWSDOWN | Documentation for this section has not yet been entered.
[Edit]
|
MAP_LOCKED | Documentation for this section has not yet been entered.
[Edit]
|
MAP_NONBLOCK | Documentation for this section has not yet been entered.
[Edit]
|
MAP_NORESERVE | Documentation for this section has not yet been entered.
[Edit]
|
MAP_POPULATE | Documentation for this section has not yet been entered.
[Edit]
|
MAP_PRIVATE | Modifications are private.
[Edit]
|
MAP_SHARED | Modifications are shared.
[Edit]
|
MAP_TYPE | Documentation for this section has not yet been entered.
[Edit]
|