public Method

MonitorMixin.mon_enter

Enters exclusive section.

Source Code

# File monitor.rb, line 212
def mon_enter
  Thread.critical = true
  mon_acquire(@mon_entering_queue)
  @mon_count += 1
ensure
  Thread.critical = false
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.