Type Alias kernel::sync::lock::spinlock::SpinLockGuard

source ·
pub type SpinLockGuard<'a, T> = Guard<'a, T, SpinLockBackend>;
Expand description

A Guard acquired from locking a SpinLock.

This is simply a type alias for a Guard returned from locking a SpinLock. It will unlock the SpinLock upon being dropped.

Aliased Type§

struct SpinLockGuard<'a, T> { /* private fields */ }