Ensure SIGCHLD always uses a signal handler. (#7819)

This commit is contained in:
Samuel Williams 2023-05-16 12:49:06 +09:00 committed by GitHub
parent 0052132025
commit 4d1ca2e1f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
Notes: git 2023-05-16 03:49:28 +00:00
Merged-By: ioquatix <samuel@codeotaku.com>

View File

@ -1107,6 +1107,9 @@ default_handler(int sig)
#endif
#ifdef SIGUSR2
case SIGUSR2:
#endif
#ifdef RUBY_SIGCHLD
case RUBY_SIGCHLD:
#endif
func = sighandler;
break;