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