Class: Byebug::KillCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/byebug/commands/kill.rb

Overview

Send custom signals to the debugged program.

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

commands, find, format_subcmd, format_subcmds, help, inherited, #initialize, load_commands, #match

Constructor Details

This class inherits a constructor from Byebug::Command

Class Method Details

.descriptionObject



33
34
35
36
37
38
# File 'lib/byebug/commands/kill.rb', line 33

def description
  %{kill[ SIGNAL]

    Send [signal] to Process.pid
    Equivalent of Process.kill(Process.pid)}
end

.namesObject



29
30
31
# File 'lib/byebug/commands/kill.rb', line 29

def names
  %w(kill)
end

Instance Method Details

#executeObject



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/byebug/commands/kill.rb', line 12

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

#regexpObject



8
9
10
# File 'lib/byebug/commands/kill.rb', line 8

def regexp
  /^\s* (?:kill) \s* (?:\s+(\S+))? \s*$/x
end