aboutsummaryrefslogtreecommitdiff
path: root/build2/algorithm.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-03-24 14:47:57 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-03-24 20:29:29 +0300
commit8ad62d6b00adf657ef7b468778a0964007aca383 (patch)
tree4f43e7bbc4af7660bad82fdca27a0df1be903ca5 /build2/algorithm.cxx
parent1271630db189e60610eeae2c2a7dc72edd91afde (diff)
Fix diagnostics interleaving characters
Diffstat (limited to 'build2/algorithm.cxx')
-rw-r--r--build2/algorithm.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/build2/algorithm.cxx b/build2/algorithm.cxx
index 9357632..c9396ef 100644
--- a/build2/algorithm.cxx
+++ b/build2/algorithm.cxx
@@ -487,7 +487,8 @@ namespace build2
}
catch (const std::exception& e)
{
- *diag_stream << "unhandled exception: " << e;
+ diag_lock l;
+ *diag_stream << "unhandled exception: " << e << endl;
assert (false);
abort ();
}
@@ -789,7 +790,8 @@ namespace build2
}
catch (const std::exception& e)
{
- *diag_stream << "unhandled exception: " << e;
+ diag_lock l;
+ *diag_stream << "unhandled exception: " << e << endl;
assert (false);
abort ();
}