Enum FileMappingAdvise
Enum with MMAP advise values.

Defined in <seqan/file.h>
Signature enum FileMappingAdvise;

Enum Values

MAP_NORMAL
There is no advise on the given address range.
MAP_RANDOM
The address range will be accessed with random access memory pattern.
MAP_SEQUENTIAL
The address range will be accessed sequentially.
MAP_WILLNEED
The address range in the advise will be needed in the future.
MAP_DONTNEED
The address range in the advise will not be needed any more.