# File lib/monitor.rb, line 239
  def mon_synchronize
    mon_enter
    begin
      yield
    ensure
      mon_exit
    end
  end