From 4e28e9df3c08af96bf6639c6f90e09819eb9a90f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 31 May 2017 17:32:11 +0200 Subject: Increase MSYS2 BLODA wait time --- libbutl/process.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbutl/process.cxx') diff --git a/libbutl/process.cxx b/libbutl/process.cxx index 53a333f..265c775 100644 --- a/libbutl/process.cxx +++ b/libbutl/process.cxx @@ -1280,7 +1280,7 @@ namespace butl msys = i->second; } - for (DWORD timeout (10000); timeout != 0; ) // Try for about 10s. + for (DWORD timeout (10500); timeout != 0; ) // Try for about 10s. { if (!CreateProcess ( batch != nullptr ? batch : pp.effect_string (), @@ -1311,7 +1311,7 @@ namespace butl // Wait in small increments to get (approximate) time elapsed. // - for (size_t i (0); i != 4; ++i, timeout -= 50) // 4 * 50 = 200ms. + for (size_t i (0); i != 6; ++i, timeout -= 50) // 6 * 50 = 300ms. { r = WaitForSingleObject (pi.hProcess, 50); -- cgit v1.1