diff options
| -rw-r--r-- | lisp/proced.el | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/lisp/proced.el b/lisp/proced.el index 24bc321f434..4da78a18ecb 100644 --- a/lisp/proced.el +++ b/lisp/proced.el | |||
| @@ -78,9 +78,22 @@ the external command (usually \"kill\")." | |||
| 78 | ("KILL" . " (9. Kill - cannot be caught or ignored)") | 78 | ("KILL" . " (9. Kill - cannot be caught or ignored)") |
| 79 | ("ALRM" . " (14. Alarm Clock)") | 79 | ("ALRM" . " (14. Alarm Clock)") |
| 80 | ("TERM" . " (15. Termination)") | 80 | ("TERM" . " (15. Termination)") |
| 81 | ("CONT" . " (Continue executing)") | 81 | ;; signals supported on systems conforming to POSIX 1003.1-2001 |
| 82 | ;; according to (info "(coreutils) Signal specifications") | ||
| 83 | ("BUS" . " (Access to an undefined portion of a memory object)") | ||
| 84 | ("CHLD" . " (Child process terminated, stopped, or continued)") | ||
| 85 | ("CONT" . " (Continue executing, if stopped)") | ||
| 86 | ("FPE" . " (Erroneous arithmetic operation)") | ||
| 87 | ("ILL" . " (Illegal Instruction)") | ||
| 88 | ("PIPE" . " (Write on a pipe with no one to read it)") | ||
| 89 | ("SEGV" . " (Invalid memory reference)") | ||
| 82 | ("STOP" . " (Stop executing / pause - cannot be caught or ignored)") | 90 | ("STOP" . " (Stop executing / pause - cannot be caught or ignored)") |
| 83 | ("TSTP" . " (Terminal stop / pause)")) | 91 | ("TSTP" . " (Terminal stop / pause)") |
| 92 | ("TTIN" . " (Background process attempting read)") | ||
| 93 | ("TTOU" . " (Background process attempting write)") | ||
| 94 | ("URG" . " (High bandwidth data is available at a socket)") | ||
| 95 | ("USR1" . " (User-defined signal 1)") | ||
| 96 | ("USR2" . " (User-defined signal 2)")) | ||
| 84 | "List of signals, used for minibuffer completion." | 97 | "List of signals, used for minibuffer completion." |
| 85 | :group 'proced | 98 | :group 'proced |
| 86 | :type '(repeat (cons (string :tag "signal name") | 99 | :type '(repeat (cons (string :tag "signal name") |