From 2a00871f07067f8f9e2de08bb9c8f50e1bf6a650 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 12 Sep 2017 12:01:49 +0200 Subject: Increase MSYS 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 9169841..dce8d6b 100644 --- a/libbutl/process.cxx +++ b/libbutl/process.cxx @@ -1453,7 +1453,7 @@ namespace butl il.unlock (); l.unlock (); - DWORD r (WaitForSingleObject (pi.hProcess, 350)); + DWORD r (WaitForSingleObject (pi.hProcess, 400)); if (r == WAIT_OBJECT_0 && GetExitCodeProcess (pi.hProcess, &r) && @@ -1464,7 +1464,7 @@ namespace butl // Assume we have waited the full amount if the time adjustment is // detected. // - duration d (now > st ? now - st : 350ms); + duration d (now > st ? now - st : 400ms); // If timeout is not fully exhausted, re-lock the mutex, revert // handles to inheritable state and re-spawn the process. -- cgit v1.1