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