[Lldb-commits] [lldb] r185906 - Add the frame content dumper function call to one more place.
Jason Molenda
jmolenda at apple.com
Mon Jul 8 22:36:41 PDT 2013
Author: jmolenda
Date: Tue Jul 9 00:36:41 2013
New Revision: 185906
URL: http://llvm.org/viewvc/llvm-project?rev=185906&view=rev
Log:
Add the frame content dumper function call to one more place.
Modified:
lldb/trunk/examples/python/diagnose_unwind.py
Modified: lldb/trunk/examples/python/diagnose_unwind.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/python/diagnose_unwind.py?rev=185906&r1=185905&r2=185906&view=diff
==============================================================================
--- lldb/trunk/examples/python/diagnose_unwind.py (original)
+++ lldb/trunk/examples/python/diagnose_unwind.py Tue Jul 9 00:36:41 2013
@@ -69,6 +69,8 @@ def simple_backtrace(debugger):
module_list = []
address_list = [cur_thread.GetFrameAtIndex(0).GetPC()]
this_module = backtrace_print_frame (target, 0, cur_thread.GetFrameAtIndex(0).GetPC(), initial_fp)
+ print_stack_frame (process, cur_fp)
+ print ""
if this_module != None:
module_list.append (this_module)
if cur_thread.GetNumFrames() < 2:
More information about the lldb-commits
mailing list