mirror of
https://github.com/openharmony/third_party_rust_rustix.git
synced 2026-07-25 07:35:38 -04:00
14 lines
329 B
Rust
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;
|