dumb-init/tests/lib/testlib.sh
2015-08-06 14:31:49 -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)$'
}