Home
last modified time | relevance | path

Searched refs:try_lock (Results 1 – 4 of 4) sorted by relevance

/DragonOS/kernel/src/libs/
H A Dspinlock.rs73 let res = self.try_lock(); in lock()
101 pub fn try_lock(&self) -> Result<SpinLockGuard<T>, SystemError> { in try_lock() method
H A Dmutex.rs92 pub fn try_lock(&self) -> Result<MutexGuard<T>, SystemError> { in try_lock() method
/DragonOS/docs/kernel/locking/
H A Dmutex.md115 ### 4.3. try_lock - 尝试加锁
120 pub fn try_lock(&self) -> Result<MutexGuard<T>, i32>
/DragonOS/kernel/src/net/event_poll/
H A Dmod.rs733 let mut epoll_guard = epoll.try_lock()?; in wakeup_epoll()