dumb-init/tests/lib/testlib.sh
2015-08-10 09:32:56 -07:00

5 lines
130 B
Bash

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