Sha256: c4a00a91c471cbeef7989dfdd2fba526b3fdd1f187cbe21a806f024115e19938
Contents?: true
Size: 911 Bytes
Versions: 8
Compression:
Stored size: 911 Bytes
Contents
require 'byebug/command' module Byebug # # Send custom signals to the debugged program. # class KillCommand < Command self.allow_in_control = true def regexp /^\s* (?:kill) \s* (?:\s+(\S+))? \s*$/x end def execute 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 @state.interface.close if 'KILL' == signame else return unless confirm('Really kill? (y/n) ') signame = 'KILL' end Process.kill(signame, Process.pid) end class << self def names %w(kill) end def description prettify <<-EOD kill[ SIGNAL] Send [signal] to Process.pid Equivalent of Process.kill(Process.pid) EOD end end end end
Version data entries
8 entries across 7 versions & 2 rubygems