std/sys/pal/unix/sync/
mod.rs

1#![cfg(not(any(
2    target_os = "linux",
3    target_os = "android",
4    all(target_os = "emscripten", target_feature = "atomics"),
5    target_os = "freebsd",
6    target_os = "openbsd",
7    target_os = "dragonfly",
8    target_os = "fuchsia",
9)))]
10#![forbid(unsafe_op_in_unsafe_fn)]
11
12mod condvar;
13mod mutex;
14
15pub use condvar::Condvar;
16pub use mutex::Mutex;