class Puma::ThreadPool

def with_mutex(&block)

Other tags:
    Version: - 5.0.0
def with_mutex(&block)
  @mutex.owned? ?
    yield :
    @mutex.synchronize(&block)
end