summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/tests/thread/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/tests/thread/main.rs')
-rw-r--r--vendor/rustix/tests/thread/main.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/rustix/tests/thread/main.rs b/vendor/rustix/tests/thread/main.rs
new file mode 100644
index 000000000..0fc9b42c4
--- /dev/null
+++ b/vendor/rustix/tests/thread/main.rs
@@ -0,0 +1,9 @@
+//! Tests for [`rustix::thread`].
+
+#![cfg(feature = "thread")]
+#![cfg(not(windows))]
+
+#[cfg(not(any(target_os = "redox")))]
+mod clocks;
+#[cfg(any(target_os = "android", target_os = "linux"))]
+mod id;