1//! Tests for [`rustix::thread`].
2
3#![cfg(feature = "thread")]
4#![cfg(not(windows))]
5
6#[cfg(not(target_os = "redox"))]
7mod clocks;
8#[cfg(any(target_os = "android", target_os = "linux"))]
9mod id;
10#[cfg(any(target_os = "android", target_os = "linux"))]
11mod prctl;
12#[cfg(any(target_os = "android", target_os = "linux"))]
13mod setns;
14