Searched refs:CondVar (Results 1 – 3 of 3) sorted by relevance
14 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
25 $crate::sync::CondVar::new($crate::optional_name!($($name)?), $crate::static_lock_class!())82 pub struct CondVar { struct95 unsafe impl Send for CondVar {} implementation99 unsafe impl Sync for CondVar {} implementation101 impl CondVar { impl
28 pub use condvar::{new_condvar, CondVar, CondVarTimeoutResult};