class RSpec::Support::Mutex

def unlock

Other tags:
    Private: -
def unlock
  return unless @locked
  Thread.critical = true
  @locked = false
  wakeup_and_run_waiting_thread
  self
end