about summary refs log tree commit diff
path: root/library/std/src/sys/unix/locks/mod.rs
blob: 30e9f407eec4cecaa73b77ca164d48bd3b580ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
cfg_if::cfg_if! {
    if #[cfg(any(
        target_os = "linux",
        target_os = "android",
    ))] {
        mod futex;
        #[allow(dead_code)]
        mod pthread_mutex; // Only used for PthreadMutexAttr, needed by pthread_remutex.
        mod pthread_remutex; // FIXME: Implement this using a futex
        mod pthread_rwlock; // FIXME: Implement this using a futex
        pub use futex::{Mutex, MovableMutex, Condvar, MovableCondvar};
        pub use pthread_remutex::ReentrantMutex;
        pub use pthread_rwlock::{RWLock, MovableRWLock};
    } else {
        mod pthread_mutex;
        mod pthread_remutex;
        mod pthread_rwlock;
        mod pthread_condvar;
        pub use pthread_mutex::{Mutex, MovableMutex};
        pub use pthread_remutex::ReentrantMutex;
        pub use pthread_rwlock::{RWLock, MovableRWLock};
        pub use pthread_condvar::{Condvar, MovableCondvar};
    }
}