class RSpec::Core::ReentrantMutex

def initialize

def initialize
  @owner = nil
  @count = 0
  @mutex = Mutex.new
end