diff options
author | Samuel Williams <[email protected]> | 2023-05-16 12:49:06 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2023-05-16 12:49:06 +0900 |
commit | 4d1ca2e1f964b6d70de34656a7893c76bd3d669b (patch) | |
tree | 0148b5481bf98a76f1d24aff3a3a481372e6aeb9 /signal.c | |
parent | 005213202569efedf73c8a4603b4fa59700f3d24 (diff) |
Ensure SIGCHLD always uses a signal handler. (#7819)
Notes
Notes:
Merged-By: ioquatix <[email protected]>
Diffstat (limited to 'signal.c')
-rw-r--r-- | signal.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1108,6 +1108,9 @@ default_handler(int sig) #ifdef SIGUSR2 case SIGUSR2: #endif +#ifdef RUBY_SIGCHLD + case RUBY_SIGCHLD: +#endif func = sighandler; break; #ifdef SIGBUS |