forked from OSchip/llvm-project
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:
parent
e37ab50a6e
commit
ef404fc9c6
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue