class Rack::Lock

def initialize(app, mutex = Mutex.new)

def initialize(app, mutex = Mutex.new)
  @app, @mutex = app, mutex
end