1 //! Tests for [`rustix::mm`]. 2 3 #![cfg(feature = "mm")] 4 #![cfg_attr(target_os = "wasi", feature(wasi_ext))] 5 #![cfg_attr(io_lifetimes_use_std, feature(io_safety))] 6 7 #[cfg(not(windows))] 8 #[cfg(not(target_os = "wasi"))] 9 mod mlock; 10 #[cfg(not(windows))] 11 mod mmap; 12 #[cfg(not(windows))] 13 mod prot; 14