[Lldb-commits] [lldb] r140358 - /lldb/trunk/source/Target/Target.cpp
Jason Molenda
jmolenda at apple.com
Thu Sep 22 17:42:55 PDT 2011
Author: jmolenda
Date: Thu Sep 22 19:42:55 2011
New Revision: 140358
URL: http://llvm.org/viewvc/llvm-project?rev=140358&view=rev
Log:
Remove the Stop Hooks / End Stop Hooks lines before/after running
the stop-hooks. I've been living on lldb with some stop-hooks
defined for the past week and the five extra lines of output on
every stop is really detracting from the usefulness of this feature.
Modified:
lldb/trunk/source/Target/Target.cpp
Modified: lldb/trunk/source/Target/Target.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/Target.cpp?rev=140358&r1=140357&r2=140358&view=diff
==============================================================================
--- lldb/trunk/source/Target/Target.cpp (original)
+++ lldb/trunk/source/Target/Target.cpp Thu Sep 22 19:42:55 2011
@@ -1651,7 +1651,6 @@
{
if (!hooks_ran)
{
- result.AppendMessage("\n** Stop Hooks **");
hooks_ran = true;
}
if (print_hook_header && !any_thread_matched)
@@ -1686,9 +1685,7 @@
}
}
}
- if (hooks_ran)
- result.AppendMessage ("\n** End Stop Hooks **\n");
-
+
result.GetImmediateOutputStream()->Flush();
result.GetImmediateErrorStream()->Flush();
}
More information about the lldb-commits
mailing list