Sha256: 228f7b80f12e292813ea92d707e75047c6d7ab55ab2441727f2112912ef88fe1
Contents?: true
Size: 969 Bytes
Versions: 6
Compression:
Stored size: 969 Bytes
Contents
module Byebug # Implements byebug "kill" command class KillCommand < Command self.allow_in_control = true def regexp / ^\s* (?:kill) \s* (?:\s+(\S+))?\s* $ /ix end def execute puts @match[1] if @match[1] signame = @match[1] unless Signal.list.member?(signame) errmsg("signal name #{signame} is not a signal I know about\n") return false end if 'KILL' == signame @state.interface.finalize end else if not confirm("Really kill? (y/n) ") return else signame = 'KILL' end end Process.kill(signame, Process.pid) end class << self def help_command %w[kill] end def help(cmd) %{ kill [SIGNAL] Send [signal] to Process.pid Equivalent of Process.kill(Process.pid) } end end end end
Version data entries
6 entries across 6 versions & 1 rubygems