dumb-init/test/testlib.sh
2015-08-05 11:03:47 -07:00

5 lines
124 B
Bash

catchable_signals() {
# We can't handle the signals SIGKILL=9, SIGCHLD=17, SIGSTOP=19
seq 1 31 | grep -vE '^(9|17|19)$'
}