[][src]Module xtensa_lx6::mutex

A series of Mutex's that also implements the mutex-trait.

Re-exports

pub extern crate mutex_trait;

Structs

CriticalSectionMutex

A Mutex based on critical sections

CriticalSectionSpinLockMutex

A spinlock and critical section section based mutex.

SpinLockMutex

A spinlock based mutex.

Traits

Mutex

Any object implementing this trait guarantees exclusive access to the data contained within the mutex for the duration of the lock.