Module parking_lot

Source
Expand description

Ffi-safe synchronization primitives,most of which are ffi-safe wrappers of parking_lot types

Re-exports§

pub use self::mutex::RMutex;
pub use self::once::ROnce;
pub use self::rw_lock::RRwLock;

Modules§

mutex
Contains an ffi-safe equivalent of parking_lot::Mutex.
once
Contains an ffi-safe wrapper for parking_lot::Once.
rw_lock
Contains an ffi-safe equivalent of parking_lot::RwLock.