class Pry::InputLock

def initialize

def initialize
  @mutex = Mutex.new
  @cond = ConditionVariable.new
  @owners = []
  @interruptible = false
end