1//! API that primarily comes from Linux but is also used other platforms (e.g. Android). 2 3#[cfg(any( 4 target_os = "android", 5 target_os = "emscripten", 6 target_os = "l4re", 7 target_os = "linux" 8))] 9pub(crate) mod pthread;