class RSpec::Core::ReentrantMutex

def synchronize

def synchronize
  enter
  yield
ensure
  exit
end