Module drone_core::sync [−][src]
Useful synchronization primitives.
Re-exports
pub use self::linked_list::LinkedList; |
Modules
linked_list | A lock-free singly-linked list. |
spsc | Single-producer, single-consumer communication primitives. |
Structs
Mutex | A mutual exclusion primitive useful for protecting shared data. |
MutexGuard | An RAII implementation of a “scoped lock” of a mutex. When this structure is dropped (falls out of scope), the lock will be unlocked. |