summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-30 00:51:57 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-30 00:51:57 +0000
commitce2a3b40ed06a25e9292dd7d02b311510d0ba8e2 (patch)
tree5150e7c0b581692d5651539ef8a74fef74a8c8bf /process.c
parent47f3c4d1477ebc479a5e0ab4342e1d86604caeb9 (diff)
use SIGCHLD_LOSSY to enable waitpid polling mode
Some systems lack SIGCHLD or have incomplete SIGCHLD implementations. So enable polling mode for them. [ruby-core:87705] [Bug #14867] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63795 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/process.c b/process.c
index 08986f9ede..ef0523165e 100644
--- a/process.c
+++ b/process.c
@@ -1126,7 +1126,7 @@ rb_waitpid(rb_pid_t pid, int *st, int flags)
waitpid_state_init(&w, pid, flags);
w.ec = GET_EC();
- if (RUBY_SIGCHLD) {
+ if (RUBY_SIGCHLD || SIGCHLD_LOSSY) {
waitpid_wait(&w);
}
else {