Your IP : 216.73.216.220


Current Path : /opt/microsoft/omsagent/plugin/
Upload File :
Current File : //opt/microsoft/omsagent/plugin/blocklock.rb

class BlockLock
    @lock = Mutex.new
    class << self
      Mutex.instance_methods(false).each do |method|
        define_method(method) do |&block|
          @lock.send(method, &block)
        end
      end
    end
  end