mon_owned?()
Returns true if this monitor is locked by current thread.
# File lib/monitor.rb, line 214 def mon_owned? @mon_mutex.locked? && @mon_owner == Thread.current end