Home
last modified time | relevance | path

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

/linux-6.15/rust/kernel/sync/
H A Dpoll.rs11 sync::{CondVar, LockClassKey},
87 inner: CondVar,
94 inner <- CondVar::new(name, key), in new()
101 type Target = CondVar;
103 fn deref(&self) -> &CondVar { in deref() argument
H A Dcondvar.rs25 $crate::sync::CondVar::new($crate::optional_name!($($name)?), $crate::static_lock_class!())
82 pub struct CondVar { struct
95 unsafe impl Send for CondVar {} implementation
99 unsafe impl Sync for CondVar {} implementation
101 impl CondVar { impl
/linux-6.15/rust/kernel/
H A Dsync.rs20 pub use condvar::{new_condvar, CondVar, CondVarTimeoutResult};