Home
last modified time | relevance | path

Searched defs:CondVar (Results 1 – 2 of 2) sorted by relevance

/rust/kernel/sync/
Dcondvar.rs85 pub struct CondVar { struct
97 // SAFETY: `CondVar` only uses a `struct wait_queue_head`, which is safe to use on any thread. argument
98 unsafe impl Send for CondVar {} implementation
102 unsafe impl Sync for CondVar {} implementation
104 impl CondVar { impl
Dpoll.rs94 fn deref(&self) -> &CondVar { in deref()