sync_poison_mod
#134646)Expand description
Synchronization objects that employ poisoning.
§Poisoning
All synchronization objects in this module implement a strategy called “poisoning” where if a thread panics while holding the exclusive access granted by the primitive, the state of the primitive is set to “poisoned”. This information is then propagated to all other threads to signify that the data protected by this primitive is likely tainted (some invariant is not being upheld).
The specifics of how this “poisoned” state affects other threads depend on the primitive. See [#Overview] bellow.
For the alternative implementations that do not employ poisoning,
see std::sys::nonpoisoning
.
§Overview
Below is a list of synchronization objects provided by this module with a high-level overview for each object and a description of how it employs “poisoning”.
-
Condvar
: Condition Variable, providing the ability to block a thread while waiting for an event to occur.Condition variables are typically associated with a boolean predicate (a condition) and a mutex. This implementation is associated with
poison::Mutex
, which employs poisoning. For this reason,Condvar::wait()
will return aLockResult
, just likepoison::Mutex::lock()
does. -
Mutex
: Mutual Exclusion mechanism, which ensures that at most one thread at a time is able to access some data.Mutex::lock()
returns aLockResult
, providing a way to deal with the poisoned state. SeeMutex
’s documentation for more. -
Once
: A thread-safe way to run a piece of code only once. Mostly useful for implementing one-time global initialization.Once
is poisoned if the piece of code passed toOnce::call_once()
orOnce::call_once_force()
panics. When in poisoned state, subsequent calls toOnce::call_once()
will panic too.Once::call_once_force()
can be used to clear the poisoned state. -
RwLock
: Provides a mutual exclusion mechanism which allows multiple readers at the same time, while allowing only one writer at a time. In some cases, this can be more efficient than a mutex.This implementation, like
Mutex
, will become poisoned on a panic. Note, however, that anRwLock
may only be poisoned if a panic occurs while it is locked exclusively (write mode). If a panic occurs in any reader, then the lock will not be poisoned.
Re-exports§
pub use self::condvar::Condvar;
pub use self::condvar::WaitTimeoutResult;
pub use self::mutex::MappedMutexGuard;
Experimental pub use self::mutex::Mutex;
pub use self::mutex::MutexGuard;
pub use self::once::ONCE_INIT;
Deprecated pub use self::once::Once;
pub use self::once::OnceState;
pub use self::rwlock::MappedRwLockReadGuard;
Experimental pub use self::rwlock::MappedRwLockWriteGuard;
Experimental pub use self::rwlock::RwLock;
pub use self::rwlock::RwLockReadGuard;
pub use self::rwlock::RwLockWriteGuard;
Modules§
- condvar đź”’
Experimental - mutex đź”’
Experimental - once đź”’
Experimental - A “once initialization” primitive
- rwlock đź”’
Experimental
Structs§
- Flag đź”’
Experimental - Guard đź”’
Experimental - Poison
Error Experimental - A type of error which can be returned whenever a lock is acquired.
Enums§
- TryLock
Error Experimental - An enumeration of possible errors associated with a
TryLockResult
which can occur while trying to acquire a lock, from thetry_lock
method on aMutex
or thetry_read
andtry_write
methods on anRwLock
.
Functions§
- map_
result đź”’Experimental
Type Aliases§
- Lock
Result Experimental - A type alias for the result of a lock method which can be poisoned.
- TryLock
Result Experimental - A type alias for the result of a nonblocking locking method.