diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-11-13 17:29:37 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-11-13 17:29:37 +0200 |
commit | c03fc4a34ad47f5951633f1e9602b250c53c1927 (patch) | |
tree | 71ea22bbdd32db7c1d94ff501d5edc7a1385cb82 | |
parent | 861555876837449fd8fc480845f642dab4a68b1e (diff) |
Increase deadlock detection timeout
-rw-r--r-- | libbuild2/scheduler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/scheduler.cxx b/libbuild2/scheduler.cxx index bd2694c..e077645 100644 --- a/libbuild2/scheduler.cxx +++ b/libbuild2/scheduler.cxx @@ -852,7 +852,7 @@ namespace build2 if (i <= m) this_thread::yield (); else - active_sleep ((i - m) * 10ms); + active_sleep ((i - m) * 20ms); np = s.progress_.load (memory_order_consume); } |