Lines Matching +full:pin +full:- +full:switches
1 // SPDX-License-Identifier: GPL-2.0
13 /// Creates a [`CondVar`] initialiser with the given name and a newly-created lock class.
42 /// #[pin]
45 /// #[pin]
64 /// fn new_example() -> Result<Pin<Box<Example>>> {
66 /// value <- new_mutex!(0),
67 /// value_changed <- new_condvar!(),
75 #[pin]
79 /// self-referential, so it cannot be safely moved once it is initialised.
80 #[pin]
95 pub fn new(name: &'static CStr, key: &'static LockClassKey) -> impl PinInit<Self> { in new()
100 wait_list <- Opaque::ffi_init(|slot| unsafe { in new()
117 // SAFETY: No arguments, switches to another thread. in wait_internal()
133 pub fn wait<T: ?Sized, B: Backend>(&self, guard: &mut Guard<'_, T, B>) -> bool { in wait()