class RSpec::Core::Mutex

def synchronize

Other tags:
    Private: -
def synchronize
  lock
  begin
    yield
  ensure
    unlock
  end
end