[−][src]Struct spin::Mutex
This type provides MUTual EXclusion based on spinning.
Description
The behaviour of these lock is similar to their namesakes in std::sync
. they
differ on the following:
- The lock will not be poisoned in case of failure;
Simple examples
use spin; let spin_mutex = spin::Mutex::new(0); // Modify the data { let mut data = spin_mutex.lock(); *data = 2; } // Read the data let answer = { let data = spin_mutex.lock(); *data }; assert_eq!(answer, 2);
Thread-safety example
use spin; use std::sync::{Arc, Barrier}; let numthreads = 1000; let spin_mutex = Arc::new(spin::Mutex::new(0)); // We use a barrier to ensure the readout happens after all writing let barrier = Arc::new(Barrier::new(numthreads + 1)); for _ in (0..numthreads) { let my_barrier = barrier.clone(); let my_lock = spin_mutex.clone(); std::thread::spawn(move|| { let mut guard = my_lock.lock(); *guard += 1; // Release the lock to prevent a deadlock drop(guard); my_barrier.wait(); }); } barrier.wait(); let answer = { *spin_mutex.lock() }; assert_eq!(answer, numthreads);
Methods
impl<T> Mutex<T>
[src]
pub const fn new(user_data: T) -> Mutex<T>
[src]
Creates a new spinlock wrapping the supplied data.
May be used statically:
use spin; static MUTEX: spin::Mutex<()> = spin::Mutex::new(()); fn demo() { let lock = MUTEX.lock(); // do something with lock drop(lock); }
pub fn into_inner(self) -> T
[src]
Consumes this mutex, returning the underlying data.
impl<T: ?Sized> Mutex<T>
[src]
pub fn lock(&self) -> MutexGuard<T>
[src]
Locks the spinlock and returns a guard.
The returned value may be dereferenced for data access and the lock will be dropped when the guard falls out of scope.
let mylock = spin::Mutex::new(0); { let mut data = mylock.lock(); // The lock is now locked and the data can be accessed *data += 1; // The lock is implicitly dropped }
pub unsafe fn force_unlock(&self)
[src]
Force unlock the spinlock.
This is extremely unsafe if the lock is not held by the current thread. However, this can be useful in some instances for exposing the lock to FFI that doesn't know how to deal with RAII.
If the lock isn't held, this is a no-op.
pub fn try_lock(&self) -> Option<MutexGuard<T>>
[src]
Tries to lock the mutex. If it is already locked, it will return None. Otherwise it returns a guard within Some.
Trait Implementations
impl<T: ?Sized + Debug> Debug for Mutex<T>
[src]
impl<T: ?Sized + Send> Sync for Mutex<T>
[src]
impl<T: ?Sized + Send> Send for Mutex<T>
[src]
impl<T: ?Sized + Default> Default for Mutex<T>
[src]
Auto Trait Implementations
Blanket Implementations
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,