Files
2022-11-28 08:58:36 -08:00

14 lines
329 B
Rust

//! Tests for [`rustix::thread`].
#![cfg(feature = "thread")]
#![cfg(not(windows))]
#[cfg(not(target_os = "redox"))]
mod clocks;
#[cfg(any(target_os = "android", target_os = "linux"))]
mod id;
#[cfg(any(target_os = "android", target_os = "linux"))]
mod prctl;
#[cfg(any(target_os = "android", target_os = "linux"))]
mod setns;