Available on crate feature
mman only.Expand description
Memory management syscalls.
These system calls are similar to sys/mman.h.
These system calls are not very POSIX-like yet!
Structs§
Functions§
- sys_
mlock - sys_
mlockall - sys_
mmap - Creates a new virtual memory mapping of the
sizespecified with protection bits specified inprot_flags. - sys_
mprotect - Configures the protections associated with a region of virtual memory
starting at
ptrand going tosize. - sys_
munlock - sys_
munlockall - sys_
munmap - Unmaps memory at the specified
ptrforsizebytes.