# Functions
Alloc allocates a byte slice of length n and returns it.
DisableCoreDumps disables core dumps on Unix systems.
Free deallocates the byte slice specified.
Lock is a wrapper for mlock(2), with extra precautions.
NoAccess specifies that the memory should be marked unreadable and immutable.
Protect modifies the protection state for a specified byte slice.
ReadOnly specifies that the memory should be marked read-only (immutable).
ReadWrite specifies that the memory should be made readable and writable.
Unlock is a wrapper for munlock(2).
# Constants
ErrInvalidFlag indicates that a given memory protection flag is undefined.
# Structs
MemoryProtectionFlag specifies some particular memory protection flag.