Wakes a number of threads waiting on this condvar.
impl Condvar {
fn signal(&self, n: usize) -> ()
}| Name | Description |
|---|---|
| n | The number of threads to be woken. |
It's possible that fewer than n threads are woken because fewer than n threads are currently waiting on this condvar.