Add futex-based RwLock on Linux.
This commit is contained in:
@@ -4,13 +4,13 @@ cfg_if::cfg_if! {
|
||||
target_os = "android",
|
||||
))] {
|
||||
mod futex;
|
||||
mod futex_rwlock;
|
||||
#[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};
|
||||
pub use futex_rwlock::{RwLock, MovableRwLock};
|
||||
} else {
|
||||
mod pthread_mutex;
|
||||
mod pthread_remutex;
|
||||
|
||||
Reference in New Issue
Block a user