Create Bitwise Flags for mmap.
Allows for unquoted C constant names to
be bitwise OR'd together for passing
to mmap
related calls.
mmapFlags(...)
... |
A comma or vertical bar ‘|’ seperated list of zero or more
valid |
Argument list may contain quoted or unquoted constants
as defined in <sys/mman.h>
. See invididual
functions for details on valid flags.
Multiple values passed in will be bitwise OR'd together at the C level, allowing for semantics close to that of native C calls.
An integer vector of length 1.
Read your system's ‘mmap’ man pages for use details.
Jeffrey A. Ryan
mmapFlags(PROT_READ) mmapFlags(PROT_READ | PROT_WRITE) mmapFlags("PROT_READ" | "PROT_WRITE") mmapFlags(PROT_READ , PROT_WRITE) mmapFlags("PROT_READ" , "PROT_WRITE")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.