Skip to content

Commit

Permalink
sighook: Add some missing fatal signals
Browse files Browse the repository at this point in the history
  • Loading branch information
tavianator committed Dec 24, 2024
1 parent 1227f79 commit 31dffd6
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions src/sighook.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,22 +342,31 @@ static const int FATAL_SIGNALS[] = {
SIGHUP,
SIGILL,
SIGINT,
#ifdef SIGIO
SIGIO,
#endif
SIGPIPE,
SIGQUIT,
SIGSEGV,
SIGTERM,
SIGUSR1,
SIGUSR2,
#ifdef SIGPOLL
SIGPOLL,
#endif
#ifdef SIGPROF
SIGPROF,
#endif
#ifdef SIGPWR
SIGPWR,
#endif
SIGQUIT,
SIGSEGV,
#ifdef SIGSTKFLT
SIGSTKFLT,
#endif
#ifdef SIGSYS
SIGSYS,
#endif
SIGTERM,
SIGTRAP,
SIGUSR1,
SIGUSR2,
#ifdef SIGVTALRM
SIGVTALRM,
#endif
Expand Down

0 comments on commit 31dffd6

Please sign in to comment.