Class MmapFlagsMacOs
- java.lang.Object
-
- com.github.marschall.nativebytebuffers.MmapFlagsMacOs
-
public final class MmapFlagsMacOs extends Object
Values that may be passed as the flags argument toMman.mmap(int, int)
on a macOS system.
-
-
Field Summary
Fields Modifier and Type Field Description static int
MAP_ANONYMOUS
Map anonymous memory not associated with any specific file.static int
MAP_HASSEMAPHORE
Notify the kernel that the region may contain semaphores and that special handling may be necessary.static int
MAP_SHARED
Modifications are shared.
-
-
-
Field Detail
-
MAP_SHARED
public static final int MAP_SHARED
Modifications are shared.- See Also:
- Constant Field Values
-
MAP_ANONYMOUS
public static final int MAP_ANONYMOUS
Map anonymous memory not associated with any specific file.- See Also:
- Constant Field Values
-
MAP_HASSEMAPHORE
public static final int MAP_HASSEMAPHORE
Notify the kernel that the region may contain semaphores and that special handling may be necessary.- See Also:
- Constant Field Values
-
-