# File lib/mongrel_config/app.rb, line 103
  def kill
    div do
      p { @results }
      
      case @signal
        when "HUP":
          p { "A reload (HUP) does not stop the process, but may not be complete." }
        when "TERM":
          p { "Stopped with TERM signal.  The process should exit shortly, but only after processing pending requests." }
        when "USR2":
          p { "Complete restart (USR2) may take a little while.  Check status in a few seconds or read logs." }
        when "KILL":
          p { "Process was violently stopped (KILL) so pending requests will be lost." }
        end
    end
  end