Sha256: e39fa2de111a55280656487d17bdb8c5fc22cf35505bac0184affc1e8a6eabee
Contents?: true
Size: 920 Bytes
Versions: 6770
Compression:
Stored size: 920 Bytes
Contents
# frozen_string_literal: true require_relative "../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 <<-DESCRIPTION kill[ signal] #{short_description} Equivalent of Process.kill(Process.pid) DESCRIPTION end def self.short_description "Sends a signal to the current process" end def execute if @match[1] signame = @match[1] return errmsg("signal name #{signame} is not a signal I know about\n") unless Signal.list.member?(signame) 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
6,770 entries across 6,767 versions & 30 rubygems