diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-08-26 21:46:39 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-08-26 21:46:39 +0200 |
commit | 572dea961662d141b83713a6577acd2c78b03060 (patch) | |
tree | f1d959aec80337d464195e5d84c58a345d00d48b | |
parent | e0473e91d478878b17d32e8eb9d0f8aff9c1e58c (diff) |
Increase BLODA wait time now that we don't hold process mutex while waiting
-rw-r--r-- | libbutl/process.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/process.cxx b/libbutl/process.cxx index 432907f..7fe43a0 100644 --- a/libbutl/process.cxx +++ b/libbutl/process.cxx @@ -1453,7 +1453,7 @@ namespace butl // Wait in small increments to get (approximate) time elapsed. // - for (size_t i (0); i != 6; ++i, timeout -= 50) // 6 * 50 = 300ms. + for (size_t i (0); i != 10; ++i, timeout -= 50) // 10 * 50 = 500ms. { r = WaitForSingleObject (pi.hProcess, 50); |