summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/tests/mm/main.rs
blob: ee746d900c025c2e3491e6bc0277fb39da64dfb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Tests for [`rustix::mm`].

#![cfg(feature = "mm")]
#![cfg_attr(target_os = "wasi", feature(wasi_ext))]
#![cfg_attr(io_lifetimes_use_std, feature(io_safety))]

#[cfg(not(windows))]
#[cfg(not(target_os = "wasi"))]
mod mlock;
#[cfg(not(windows))]
mod mmap;
#[cfg(not(windows))]
mod prot;