Type Alias spinlock::SpinRaw

source ·
pub type SpinRaw<T> = BaseSpinLock<NoOp, T>;
Expand description

A raw spin lock that does nothing while trying to lock.

It must be used in the preemption-disabled and local IRQ-disabled context, or never be used in interrupt handlers.