Method: ConcurrentSHM::Condition#broadcast
- Defined in:
- ext/concurrent-shm/posix.c
#broadcast ⇒ Object
Wakes all threads waiting on this condition.
675 676 677 678 679 680 |
# File 'ext/concurrent-shm/posix.c', line 675 static VALUE condition_broadcast(VALUE self) { condition_t * cond = value_as_condition(self); chk_err(pthread_cond_broadcast, (&cond->shared->cond), ""); return Qnil; } |