Files
rust/library/std/src/thread/parker/mod.rs

10 lines
208 B
Rust
Raw Normal View History

cfg_if::cfg_if! {
if #[cfg(any(target_os = "linux", target_os = "android"))] {
mod linux;
pub use linux::Parker;
} else {
mod generic;
pub use generic::Parker;
}
}