There's no documentation for this item.
Source Code
# File mutex_m.rb, line 98 def mu_unlock return unless @mu_locked Thread.critical = true wait = @mu_waiting @mu_waiting = [] @mu_locked = false Thread.critical = false for w in wait w.run end self end
<code/>and<pre/>for code samples.