dumb-init/test/testlib.sh

5 lines
124 B
Bash
Raw Normal View History

2015-08-05 20:56:55 +03:00
catchable_signals() {
# We can't handle the signals SIGKILL=9, SIGCHLD=17, SIGSTOP=19
seq 1 31 | grep -vE '^(9|17|19)$'
}