diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-09-12 12:01:49 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-09-12 12:01:49 +0200 |
commit | 2a00871f07067f8f9e2de08bb9c8f50e1bf6a650 (patch) | |
tree | f98aae44ff63fc0f4e368ae26e62f634cb666a74 | |
parent | b8a96d789253c91093476f898611d5903799e84e (diff) |
Increase MSYS BLODA wait time
-rw-r--r-- | libbutl/process.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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. |