Home
last modified time | relevance | path

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

/linux/rust/kernel/sync/
H A Dpoll.rs14 CondVar,
75 /// A wrapper around [`CondVar`] that makes it usable with [`PollTable`].
77 /// [`CondVar`]: crate::sync::CondVar in new()
82 inner: CondVar,
89 inner <- CondVar::new(name, key), in deref()
94 // Make the `CondVar` methods callable on `PollCondVar`.
96 type Target = CondVar; in drop()
98 fn deref(&self) -> &CondVar { in drop()
87 deref(&self) -> &CondVar 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/rust/kernel/
H A Dsync.rs28 pub use condvar::{new_condvar, CondVar, CondVarTimeoutResult};