From b3544b2551b8a0fd931e867c4126cdd9d79a4bba Mon Sep 17 00:00:00 2001 From: usa Date: Thu, 9 Jul 2015 06:38:16 +0000 Subject: * win32/win32.c (waitpid): fixed return value of previous commit. thanks, nobu! git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51203 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- win32/win32.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'win32') diff --git a/win32/win32.c b/win32/win32.c index 1a37b61d3a..34995c54f6 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -4296,10 +4296,11 @@ waitpid(rb_pid_t pid, int *stat_loc, int options) while (!(pid = poll_child_status(child, stat_loc))) { /* wait... */ - errno = 0; - if (rb_w32_wait_events_blocking(&child->hProcess, 1, timeout) != WAIT_OBJECT_0) { + int ret = rb_w32_wait_events_blocking(&child->hProcess, 1, timeout); + if (ret == WAIT_OBJECT_0 + 1) return -1; /* maybe EINTR */ + if (ret != WAIT_OBJECT_0) { /* still active */ - if ((options & WNOHANG) || errno == EINTR) { + if (options & WNOHANG) { pid = 0; break; } -- cgit v1.2.3