I can look around the internet and find that the associated number for SIGKILL is 9, but is there linux documentation (such as, a man page) showing the complete list of signals and their numbers?
|
|
|||||
|
|
The signal(7) man page (at least the one I have) shows multiple possible numbers for some of the signals. If you can get
or
In both cases, that's an "ell" (for "list"), not a "one". Bash's built-in |
|||||
|
|
Also look in /usr/include/signal.h and either scan the #define or #include statements (which on Ubuntu 10.10 tells you to look in /usr/include/bits/signum.h). Note that the SIGRTMIN/SIGRTMAX are placeholders for kernal and unused signals and should not be called by the shell or a program. |
|||
|
|

