class Concurrent::Collection::SynchronizedMapBackend

def initialize(*args, &block)

def initialize(*args, &block)
  super
  # WARNING: Mutex is a non-reentrant lock, so the synchronized methods are
  # not allowed to call each other.
  @mutex = Mutex.new
end