From 54394b3b71e7725715371af808a0a2827b825e54 Mon Sep 17 00:00:00 2001 From: normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> Date: Fri, 29 Jun 2018 02:21:08 +0000 Subject: [PATCH] process.c: fix typo in non-SIGCHLD waitpid :x I expect this to fix [Bug #14873] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63785 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process.c b/process.c index d207f46104..b3932e88ce 100644 --- a/process.c +++ b/process.c @@ -1106,7 +1106,7 @@ waitpid_no_SIGCHLD(struct waitpid_state *w) } else { do { - rb_thread_call_without_gvl(waitpid_blocking_no_SIGCHLD, &w, + rb_thread_call_without_gvl(waitpid_blocking_no_SIGCHLD, w, RUBY_UBF_PROCESS, 0); } while (w->ret < 0 && errno == EINTR && (RUBY_VM_CHECK_INTS(w->ec),1)); }