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