We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1640a97 commit 0098adcCopy full SHA for 0098adc
rust/kernel/sync/condvar.rs
@@ -25,7 +25,7 @@ macro_rules! condvar_init {
25
// TODO: `bindgen` is not generating this constant. Figure out why.
26
const POLLFREE: u32 = 0x4000;
27
28
-/// Exposes the kernel's [`struct wait_queue_head`] as a condition variable. It allows to caller to
+/// Exposes the kernel's [`struct wait_queue_head`] as a condition variable. It allows the caller to
29
/// atomically release the given lock and go to sleep. It reacquires the lock when it wakes up. And
30
/// it wakes up when notified by another thread (via [`CondVar::notify_one`] or
31
/// [`CondVar::notify_all`]) or because the thread received a signal.
0 commit comments