diff options
author | Dmitry Vyukov <dvyukov@google.com> | 2013-11-27 18:23:52 +0000 |
---|---|---|
committer | Dmitry Vyukov <dvyukov@google.com> | 2013-11-27 18:23:52 +0000 |
commit | c03868615b76f009a28074916f19f26a8d315760 (patch) | |
tree | 9c5b3072e5309de2afc98122def18aba6256c94d /compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc | |
parent | ed20f478bce27b59b30f253adb5f5133824faa6e (diff) | |
download | bcm5719-llvm-c03868615b76f009a28074916f19f26a8d315760.tar.gz bcm5719-llvm-c03868615b76f009a28074916f19f26a8d315760.zip |
tsan: clarify "thread ended with ignores enabled" message
llvm-svn: 195858
Diffstat (limited to 'compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc')
-rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc b/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc index f8835eb555c..c2fcd713848 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc +++ b/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc @@ -169,6 +169,8 @@ static void ReportIgnoresEnabled(ThreadContext *tctx, IgnoreSet *set) { " created at:\n", tctx->tid, tctx->name); PrintStack(SymbolizeStackId(tctx->creation_stack_id)); } + Printf(" One of the following ignores was not ended" + " (in order of probability)\n"); for (uptr i = 0; i < set->Size(); i++) { Printf(" Ignore was enabled at:\n"); PrintStack(SymbolizeStackId(set->At(i))); |