Home
last modified time | relevance | path

Searched refs:SpinLockGuard (Results 1 – 3 of 3) sorted by relevance

/linux-6.15/rust/pin-init/examples/
H A Dmutex.rs32 pub fn acquire(&self) -> SpinLockGuard<'_> { in acquire()
42 SpinLockGuard(self) in acquire()
54 pub struct SpinLockGuard<'a>(&'a SpinLock); struct
56 impl Drop for SpinLockGuard<'_> { implementation
/linux-6.15/rust/kernel/sync/lock/
H A Dspinlock.rs96 pub type SpinLockGuard<'a, T> = super::Guard<'a, T, SpinLockBackend>; typedef
/linux-6.15/rust/kernel/
H A Dsync.rs23 pub use lock::spinlock::{new_spinlock, SpinLock, SpinLockGuard};