class EventMachine::Synchrony::Thread::ConditionVariable

def signal


Wakes up the first thread in line waiting for this lock.
def signal
  while (pair = @waiters.shift)
    break if _wakeup(*pair)
  end
  self
end