[Lldb-commits] [lldb] r166838 - /lldb/trunk/www/lldb-gdb.html
Jason Molenda
jmolenda at apple.com
Fri Oct 26 16:52:49 PDT 2012
Author: jmolenda
Date: Fri Oct 26 18:52:49 2012
New Revision: 166838
URL: http://llvm.org/viewvc/llvm-project?rev=166838&view=rev
Log:
Document "bt <n>" for "thread backtrace -c <n>", note that it is available
in lldb-169 and later.
Modified:
lldb/trunk/www/lldb-gdb.html
Modified: lldb/trunk/www/lldb-gdb.html
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/lldb-gdb.html?rev=166838&r1=166837&r2=166838&view=diff
==============================================================================
--- lldb/trunk/www/lldb-gdb.html (original)
+++ lldb/trunk/www/lldb-gdb.html Fri Oct 26 18:52:49 2012
@@ -668,6 +668,17 @@
</td>
</tr>
+ <tr><td class="header" colspan="2">Backtrace the first five frames of the current thread. (<i>NB: valid for lldb-169 and later</i>)</td></tr>
+ <tr>
+ <td class="content">
+ <b>(gdb)</b> bt 5
+ </td>
+ <td class="content">
+ <b>(lldb)</b> thread backtrace -c 5<br>
+ <b>(lldb)</b> bt 5
+ </td>
+ </tr>
+
<tr><td class="header" colspan="2">Select a different stack frame by index for the current thread.</td></tr>
<tr>
<td class="content">
More information about the lldb-commits
mailing list