Variable: proced-signal-list

proced-signal-list is a customizable variable defined in proced.el.gz.

Value

(("HUP" . "   (1.  Hangup)")
 ("INT" . "   (2.  Terminal interrupt)")
 ("QUIT" . "  (3.  Terminal quit)")
 ("ABRT" . "  (6.  Process abort)")
 ("KILL" . "  (9.  Kill - cannot be caught or ignored)")
 ("ALRM" . "  (14. Alarm Clock)")
 ("TERM" . "  (15. Termination)")
 ("BUS" . "   (Access to an undefined portion of a memory object)")
 ("CHLD" . "  (Child process terminated, stopped, or continued)")
 ("CONT" . "  (Continue executing, if stopped)")
 ("FPE" . "   (Erroneous arithmetic operation)")
 ("ILL" . "   (Illegal Instruction)")
 ("PIPE" . "  (Write on a pipe with no one to read it)")
 ("SEGV" . "  (Invalid memory reference)")
 ("STOP" . "  (Stop executing / pause - cannot be caught or ignored)")
 ("TSTP" . "  (Terminal stop / pause)")
 ("TTIN" . "  (Background process attempting read)")
 ("TTOU" . "  (Background process attempting write)")
 ("URG" . "   (High bandwidth data is available at a socket)")
 ("USR1" . "  (User-defined signal 1)")
 ("USR2" . "  (User-defined signal 2)"))

Documentation

List of signals, used for minibuffer completion.

Source Code

;; Defined in /usr/src/emacs/lisp/proced.el.gz
(defcustom proced-signal-list
  '( ;; signals supported on all POSIX compliant systems
    ("HUP" . "   (1.  Hangup)")
    ("INT" . "   (2.  Terminal interrupt)")
    ("QUIT" . "  (3.  Terminal quit)")
    ("ABRT" . "  (6.  Process abort)")
    ("KILL" . "  (9.  Kill - cannot be caught or ignored)")
    ("ALRM" . "  (14. Alarm Clock)")
    ("TERM" . "  (15. Termination)")
    ;; signals supported on systems conforming to POSIX 1003.1-2001
    ;; according to (info "(coreutils) Signal specifications")
    ("BUS" . "   (Access to an undefined portion of a memory object)")
    ("CHLD" . "  (Child process terminated, stopped, or continued)")
    ("CONT" . "  (Continue executing, if stopped)")
    ("FPE" . "   (Erroneous arithmetic operation)")
    ("ILL" . "   (Illegal Instruction)")
    ("PIPE" . "  (Write on a pipe with no one to read it)")
    ("SEGV" . "  (Invalid memory reference)")
    ("STOP" . "  (Stop executing / pause - cannot be caught or ignored)")
    ("TSTP" . "  (Terminal stop / pause)")
    ("TTIN" . "  (Background process attempting read)")
    ("TTOU" . "  (Background process attempting write)")
    ("URG" . "   (High bandwidth data is available at a socket)")
    ("USR1" . "  (User-defined signal 1)")
    ("USR2" . "  (User-defined signal 2)"))
  "List of signals, used for minibuffer completion."
  :type '(repeat (cons (string :tag "signal name")
                       (string :tag "description"))))