Method: XThread::RBMonitorMixin::RBConditionVariable#signal
- Defined in:
- lib/xthread/monitor.rb
#signal ⇒ Object
Wakes up the first thread in line waiting for this lock.
132 133 134 135 |
# File 'lib/xthread/monitor.rb', line 132 def signal @monitor.__send__(:mon_check_owner) @cond.signal end |