mon_enter()
private

No documentation available.

# File activesupport/lib/active_support/concurrency/load_interlock_aware_monitor.rb, line 54
        def mon_enter
          @mutex.lock if @owner != Thread.current
          @owner = Thread.current
          @count += 1
        end