]> git.proxmox.com Git - rustc.git/blob - vendor/rustix/tests/thread/main.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / vendor / rustix / tests / thread / main.rs
1 //! Tests for [`rustix::thread`].
2
3 #![cfg(feature = "thread")]
4 #![cfg(not(windows))]
5
6 #[cfg(not(any(target_os = "redox")))]
7 mod clocks;
8 #[cfg(any(target_os = "android", target_os = "linux"))]
9 mod id;