Home
last modified time | relevance | path

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

/linux-6.14.4/rust/kernel/sync/
Dcondvar.rs83 pub struct CondVar { struct
95 // SAFETY: `CondVar` only uses a `struct wait_queue_head`, which is safe to use on any thread. argument
96 unsafe impl Send for CondVar {} implementation
100 unsafe impl Sync for CondVar {} implementation
102 impl CondVar { implementation
Dpoll.rs103 fn deref(&self) -> &CondVar { in deref()