aboutsummaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2023-05-15 23:14:51 +0900
committerGitHub <noreply@github.com>2023-05-15 23:14:51 +0900
commitab7bb38aca0d2b5c2b81142a8e67fbff0f1a4a8a (patch)
tree802485815849e6ac13711f7dd62e91ff951c9426 /thread.c
parentbab9966b7a94a63381d53ad2a8a9a53fcddf6148 (diff)
downloadruby-ab7bb38aca0d2b5c2b81142a8e67fbff0f1a4a8a.tar.gz
Remove explicit SIGCHLD handling. (#7816)
* Remove unused SIGCHLD handling. * Remove unused `init_sigchld`. * Remove unnecessary `#define RUBY_SIGCHLD (0)`. * Remove unused `SIGCHLD_LOSSY`.
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 60b5ce1af6..2d255beaec 100644
--- a/thread.c
+++ b/thread.c
@@ -4511,7 +4511,7 @@ check_signals_nogvl(rb_thread_t *th, int sigwait_fd)
else {
threadptr_trap_interrupt(vm->ractor.main_thread);
}
- ret = TRUE; /* for SIGCHLD_LOSSY && rb_sigwait_sleep */
+ ret = TRUE; /* for rb_sigwait_sleep */
}
return ret;
}