Now that you can "command script import" packages, the docs should reflect the best practice

llvm-svn: 181475
This commit is contained in:
Enrico Granata 2013-05-08 21:39:19 +00:00
parent 610f9260fa
commit 068c11096a
2 changed files with 8 additions and 8 deletions

View File

@ -942,7 +942,7 @@
<b>(gdb)</b> info malloc 0x10010d680
</td>
<td class="content">
<b>(lldb)</b> script import lldb.macosx.heap<br>
<b>(lldb)</b> command script import lldb.macosx.heap<br>
<b>(lldb)</b> process launch --environment MallocStackLogging=1 -- [ARGS]<br>
<b>(lldb)</b> malloc_info --stack-history 0x10010d680<br>
</td>
@ -952,7 +952,7 @@
<td class="content">
</td>
<td class="content">
<b>(lldb)</b> script import lldb.macosx.heap<br>
<b>(lldb)</b> command script import lldb.macosx.heap<br>
<b>(lldb)</b> malloc_info --type 0x10010d680<br>
</td>
</tr>
@ -961,7 +961,7 @@
<td class="content">
</td>
<td class="content">
<b>(lldb)</b> script import lldb.macosx.heap<br>
<b>(lldb)</b> command script import lldb.macosx.heap<br>
<b>(lldb)</b> ptr_refs EXPR <br>
</td>
</tr>
@ -970,7 +970,7 @@
<td class="content">
</td>
<td class="content">
<b>(lldb)</b> script import lldb.macosx.heap<br>
<b>(lldb)</b> command script import lldb.macosx.heap<br>
<b>(lldb)</b> cstr_refs CSTRING<br>
</td>
</tr>

View File

@ -298,7 +298,7 @@ if target:
<p>
This module installs a new "crashlog" command into the lldb command interpreter so that you can use
it to parse and symbolicate Mac OS X crash logs:</p>
<code><pre><tt><b>(lldb)</b> script import lldb.macosx.crashlog
<code><pre><tt><b>(lldb)</b> command script import lldb.macosx.crashlog
"crashlog" and "save_crashlog" command installed, use the "--help" option for detailed help
<b>(lldb)</b> crashlog /tmp/crash.log
...