class RSpec::Support::ReentrantMutex

def synchronize

def synchronize
  enter
  yield
ensure
  exit
end