Files
rust/library/std/src/sys_common/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 futex;
pub use futex::Parker;
} else {
mod generic;
pub use generic::Parker;
}
}