Sha256: 9fffbf65da7dbf28ec91b2280f6f5f0961a86a965d43c7ab4ae44a2df16efd74

Contents?: true

Size: 915 Bytes

Versions: 6

Compression:

Stored size: 915 Bytes

Contents

# frozen_string_literal: true

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
      <<-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 entries across 6 versions & 4 rubygems

Version Path
talon_one-2.0.0 vendor/bundle/ruby/2.3.0/gems/byebug-11.0.1/lib/byebug/commands/kill.rb
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/byebug-11.0.1/lib/byebug/commands/kill.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/byebug-11.0.1/lib/byebug/commands/kill.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/byebug-11.0.1/lib/byebug/commands/kill.rb
byebug-11.0.1 lib/byebug/commands/kill.rb
byebug-11.0.0 lib/byebug/commands/kill.rb