# File lib/mongo/semaphore.rb, line 28
    def wait(timeout)
      @lock.synchronize do
        @cv.wait(@lock, timeout)
      end
    end