-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC2173
koalaman edited this page Nov 1, 2015
·
1 revision
trap 'echo "unkillable"' KILL
Not applicable. This is not possible.
SIGKILL and SIGSTOP can not be caught/ignored (according to POSIX and as implemented on platforms including Linux and FreeBSD). Trying to trap this signal has undefined results.
None. If you come across one, please file an issue about it.