[Lldb-commits] [lldb] r166839 - /lldb/trunk/www/lldb-gdb.html
Jason Molenda
jmolenda at apple.com
Fri Oct 26 16:56:03 PDT 2012
Author: jmolenda
Date: Fri Oct 26 18:56:03 2012
New Revision: 166839
URL: http://llvm.org/viewvc/llvm-project?rev=166839&view=rev
Log:
Show both lldb-168 and earlier "bt -c 5" as well as lldb-169 and later "bt 5" usage.
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=166839&r1=166838&r2=166839&view=diff
==============================================================================
--- lldb/trunk/www/lldb-gdb.html (original)
+++ lldb/trunk/www/lldb-gdb.html Fri Oct 26 18:56:03 2012
@@ -668,14 +668,15 @@
</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="header" colspan="2">Backtrace the first five frames of the current thread.</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
+ <b>(lldb)</b> bt 5 (<i>lldb-169 and later</i>)<br>
+ <b>(lldb)</b> bt -c 5 (<i>lldb-168 and earlier</i>)
</td>
</tr>
More information about the lldb-commits
mailing list