Struct sgx_tstd::sync::SgxReentrantMutex [−][src]
pub struct SgxReentrantMutex<T> { /* fields omitted */ }
A re-entrant mutual exclusion
This mutex will block other threads waiting for the lock to become available. The thread which has already locked the mutex can lock it multiple times without blocking, preventing a common source of deadlocks.
Methods
impl<T> SgxReentrantMutex<T>
[src]
impl<T> SgxReentrantMutex<T>
pub fn new(t: T) -> SgxReentrantMutex<T>
[src]
pub fn new(t: T) -> SgxReentrantMutex<T>
Creates a new reentrant mutex in an unlocked state.
pub fn lock(&self) -> LockResult<SgxReentrantMutexGuard<T>>
[src]
pub fn lock(&self) -> LockResult<SgxReentrantMutexGuard<T>>
Acquires a mutex, blocking the current thread until it is able to do so.
This function will block the caller until it is available to acquire the mutex. Upon returning, the thread is the only thread with the mutex held. When the thread calling this method already holds the lock, the call shall succeed without blocking.
Errors
If another user of this mutex panicked while holding the mutex, then this call will return failure if the mutex would otherwise be acquired.
pub fn try_lock(&self) -> TryLockResult<SgxReentrantMutexGuard<T>>
[src]
pub fn try_lock(&self) -> TryLockResult<SgxReentrantMutexGuard<T>>
Attempts to acquire this lock.
If the lock could not be acquired at this time, then Err
is returned.
Otherwise, an RAII guard is returned.
This function does not block.
Errors
If another user of this mutex panicked while holding the mutex, then this call will return failure if the mutex would otherwise be acquired.
Trait Implementations
impl<T: Send> Send for SgxReentrantMutex<T>
[src]
impl<T: Send> Send for SgxReentrantMutex<T>
impl<T: Send> Sync for SgxReentrantMutex<T>
[src]
impl<T: Send> Sync for SgxReentrantMutex<T>
impl<T> UnwindSafe for SgxReentrantMutex<T>
[src]
impl<T> UnwindSafe for SgxReentrantMutex<T>
impl<T> RefUnwindSafe for SgxReentrantMutex<T>
[src]
impl<T> RefUnwindSafe for SgxReentrantMutex<T>
impl<T> Drop for SgxReentrantMutex<T>
[src]
impl<T> Drop for SgxReentrantMutex<T>
impl<T: Debug + 'static> Debug for SgxReentrantMutex<T>
[src]
impl<T: Debug + 'static> Debug for SgxReentrantMutex<T>