Structs§
- Flags used with
mremap
. u64 to match the x86-64mremap
syscall parameter: https://github.com/torvalds/linux/tree/v6.3/mm/mremap.c#L895 - Map flags, as used with
mmap
. These are u64 to match the x86-64mmap
syscall parameter: https://github.com/torvalds/linux/tree/v6.3/arch/x86/kernel/sys_x86_64.c#L86 - Prot flags, as used with
mmap
. These are u64 to match the x86-64mmap
syscall parameter: https://github.com/torvalds/linux/tree/v6.3/arch/x86/kernel/sys_x86_64.c#L86
Functions§
- mmap⚠Make the
mmap
syscall, with a thin layer of type-safety overmmap_raw
. Seemmap(2)
. - Make the
mmap
syscall. Seemmap(2)
. - Make the
mprotect
syscall, with a thin layer of type-safety overmprotect_raw
. Seemprotect(2)
. - Make the
mprotect
syscall. Seemprotect(2)
. - Make the
munmap
syscall, with a thin layer of type-safety overmunmap_raw
. Seemunmap(2)
. - Make the
munmap
syscall. Seemunmap(2)
.