From e4600b87b5a13412fc8f46da22d4f224732e6769 Mon Sep 17 00:00:00 2001 From: normal Date: Sat, 30 Jun 2018 03:50:52 +0000 Subject: mjit: provide more diagnostics for waitpid failures Also, enable check for defined(_WIN32) macro for SIGCHLD_LOSSY, too. [Bug #14867] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63796 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm_core.h') diff --git a/vm_core.h b/vm_core.h index 9db99fe03b..cf2dde01b1 100644 --- a/vm_core.h +++ b/vm_core.h @@ -101,7 +101,7 @@ #endif /* platforms with broken or non-existent SIGCHLD work by polling */ -#if defined(__APPLE__) || defined(__WIN32__) +#if defined(__APPLE__) || defined(__WIN32__) || defined(_WIN32) # define SIGCHLD_LOSSY (1) #else # define SIGCHLD_LOSSY (0) -- cgit v1.2.3