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]

Creates a new reentrant mutex in an unlocked state.

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.

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> Sync for SgxReentrantMutex<T>
[src]

impl<T> UnwindSafe for SgxReentrantMutex<T>
[src]

impl<T> RefUnwindSafe for SgxReentrantMutex<T>
[src]

impl<T> Drop for SgxReentrantMutex<T>
[src]

Executes the destructor for this type. Read more

impl<T: Debug + 'static> Debug for SgxReentrantMutex<T>
[src]

Formats the value using the given formatter. Read more