[Lldb-commits] [lldb] r118000 - /lldb/trunk/source/Core/Debugger.cpp
Greg Clayton
gclayton at apple.com
Mon Nov 1 18:53:22 PDT 2010
Author: gclayton
Date: Mon Nov 1 20:53:21 2010
New Revision: 118000
URL: http://llvm.org/viewvc/llvm-project?rev=118000&view=rev
Log:
Fixed our overly verbose stop reasons which by default included the thread
name and thread queue. Users can modify the thread-format strings to add these
back if needed.
Modified:
lldb/trunk/source/Core/Debugger.cpp
Modified: lldb/trunk/source/Core/Debugger.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Debugger.cpp?rev=118000&r1=117999&r2=118000&view=diff
==============================================================================
--- lldb/trunk/source/Core/Debugger.cpp (original)
+++ lldb/trunk/source/Core/Debugger.cpp Mon Nov 1 20:53:21 2010
@@ -1655,10 +1655,17 @@
MODULE_WITH_FUNC\
FILE_AND_LINE\
"{, stop reason = ${thread.stop-reason}}"\
- "{, name = ${thread.name}}"\
- "{, queue = ${thread.queue}}"\
"\\n"
+//#define DEFAULT_THREAD_FORMAT "thread #${thread.index}: tid = ${thread.id}"\
+// "{, ${frame.pc}}"\
+// MODULE_WITH_FUNC\
+// FILE_AND_LINE\
+// "{, stop reason = ${thread.stop-reason}}"\
+// "{, name = ${thread.name}}"\
+// "{, queue = ${thread.queue}}"\
+// "\\n"
+
#define DEFAULT_FRAME_FORMAT "frame #${frame.index}: ${frame.pc}"\
MODULE_WITH_FUNC\
FILE_AND_LINE\
More information about the lldb-commits
mailing list