[Lldb-commits] [lldb] r257189 - Add note about the "thread until" command to the llvm-gdb cheatsheet.

Justin Lebar via lldb-commits lldb-commits at lists.llvm.org
Fri Jan 8 10:56:19 PST 2016


Author: jlebar
Date: Fri Jan  8 12:56:18 2016
New Revision: 257189

URL: http://llvm.org/viewvc/llvm-project?rev=257189&view=rev
Log:
Add note about the "thread until" command to the llvm-gdb cheatsheet.

Differential Revision: http://reviews.llvm.org/D15684

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=257189&r1=257188&r2=257189&view=diff
==============================================================================
--- lldb/trunk/www/lldb-gdb.html (original)
+++ lldb/trunk/www/lldb-gdb.html Fri Jan  8 12:56:18 2016
@@ -307,6 +307,15 @@
                             Stop hook #1 added.<br>
                         </td>
                     </tr>
+                    <tr><td class="header" colspan="2">Run until we hit line <b>12</b> or control leaves the current function.</td></tr>
+                    <tr>
+                        <td class="content">
+                            <b>(gdb)</b> until 12
+                        </td>
+                        <td class="content">
+                            <b>(lldb)</b> thread until 12
+                        </td>
+                    </tr>
 
                     </table>
                     <p>




More information about the lldb-commits mailing list