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.
pub type SpinNoIrq<T> = BaseSpinLock<NoPreemptIrqSave, T>;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.