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