diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-11-14 16:05:55 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-11-14 16:05:55 +0200 |
commit | 07b75e1979829c7df557719ff8076a1ec08faeb0 (patch) | |
tree | 13257d076e03578128be0cd1cb99f2ae80ff2beb | |
parent | 5ec57d68a5205173a02c34a24d7129347d43196c (diff) |
Adjust deadlock diagnostics to reflect its fuzzy nature
-rw-r--r-- | libbuild2/scheduler.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libbuild2/scheduler.cxx b/libbuild2/scheduler.cxx index e077645..7aca552 100644 --- a/libbuild2/scheduler.cxx +++ b/libbuild2/scheduler.cxx @@ -871,10 +871,9 @@ namespace build2 // thing about abort is if this is not a dependency cycle, then we // have a core to examine). // - error << "deadlock detected, aborting" << + error << "deadlock suspected, aborting" << info << "deadlocks are normally caused by dependency cycles" << - info << "re-run with -s to diagnose dependency cycles" << - info << "if not a dependency cycle, please report as a bug"; + info << "re-run with -s to diagnose dependency cycles"; terminate (false /* trace */); } |