Flowdock
mu_unlock() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/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
Register or log in to add new notes.