Home
last modified time | relevance | path

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

/linux/rust/kernel/sync/
H A Dpoll.rs15 /// Creates a [`PollCondVar`] initialiser with the given name and a newly-created lock class.
19 $crate::sync::poll::PollCondVar::new(
50 /// Register this [`PollTable`] with the provided [`PollCondVar`], so that it can be notified
52 pub fn register_wait(&self, file: &File, cv: &PollCondVar) { in register_wait() argument
56 // * Since `PollCondVar` is pinned, its destructor is guaranteed to run before the memory in register_wait()
69 pub struct PollCondVar { struct
74 impl PollCondVar { implementation
83 // Make the `CondVar` methods callable on `PollCondVar`.
84 impl Deref for PollCondVar { implementation
93 impl PinnedDrop for PollCondVar { implementation
[all...]