Sha256: 6ce1314fe53f999d7b43185e266965c26069a1367d0bac6b953d10f5f79b1e8f
Contents?: true
Size: 894 Bytes
Versions: 3
Compression:
Stored size: 894 Bytes
Contents
require 'byebug/command' module Byebug # # Send custom signals to the debugged program. # class KillCommand < Command self.allow_in_control = true def self.regexp /^\s* (?:kill) \s* (?:\s+(\S+))? \s*$/x end def self.description <<-EOD kill[ signal] #{short_description} Equivalent of Process.kill(Process.pid) EOD end def self.short_description 'Sends a signal to the current process' end def execute if @match[1] signame = @match[1] unless Signal.list.member?(signame) return errmsg("signal name #{signame} is not a signal I know about\n") end else return unless confirm('Really kill? (y/n) ') signame = 'KILL' end processor.interface.close if signame == 'KILL' Process.kill(signame, Process.pid) end end end
Version data entries
3 entries across 3 versions & 3 rubygems