Name Description Size
madvise.rs The `madvise` function. # Safety `madvise` operates on a raw pointer. Some forms of `madvise` may mutate the memory or have other side effects. 1812
mmap.rs The `mmap` API. # Safety `mmap` and related functions manipulate raw pointers and have special semantics and are wildly unsafe. 14328
mod.rs Memory map operations. 331
msync.rs The `msync` function. # Safety `msync` operates on a raw pointer. Some forms of `msync` may mutate the memory or have other side effects. 1589
userfaultfd.rs The Linux `userfaultfd` API. # Safety Calling `userfaultfd` is safe, but the returned file descriptor lets users observe and manipulate process memory in magical ways. 848