Explain how to use "expr -u" as the lldb equivalent of "set unwind-on-signal 0; print".

llvm-svn: 168071
This commit is contained in:
Jim Ingham 2012-11-15 19:13:33 +00:00
parent e37ab50a6e
commit ef404fc9c6
1 changed files with 11 additions and 0 deletions

View File

@ -631,6 +631,17 @@
</td>
</tr>
<tr><td class="header" colspan="2">Calling a function so you can stop at a breakpoint in the function.</td></tr>
<tr>
<td class="content">
<b>(gdb)</b> set unwindonsignal 0<br>
<b>(gdb)</b> p function_with_a_breakpoint()<br>
</td>
<td class="content">
<b>(lldb)</b> expr -u 0 -- function_with_a_breakpoint()<br>
</td>
</tr>
</table>
<p>