Type Alias spinlock::SpinNoIrq

source ·
pub type SpinNoIrq<T> = BaseSpinLock<NoPreemptIrqSave, T>;
Expand description

A spin lock that disables kernel preemption and local IRQs while trying to lock, and re-enables it after unlocking.

It can be used in the IRQ-enabled context.

Aliased Type§

struct SpinNoIrq<T> { /* private fields */ }