= private = protected
push(obj)
Pushes obj to the queue.
# File lib/thread.rb, line 152 def push(obj) @mutex.synchronize{ @que.push obj begin t = @waiting.shift t.wakeup if t rescue ThreadError retry end } end