= private = protected
signal()
Wakes up the first thread in line waiting for this lock.
# File lib/thread.rb, line 75 def signal begin t = @waiters_mutex.synchronize { @waiters.shift } t.run if t rescue ThreadError retry end end