Description Usage Arguments Value See Also Examples
Stop execution at certain posititions in the source
1 2 3 4 5 |
file |
source file to break in |
line |
line number to break at |
handle |
handle returned from |
condition |
the breakpoint stops only if the condition expression evaluates to true. |
symbol |
symbol (function) to break in |
module |
module to search for symbol |
An invisible return code.
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
library(lldbR)
lldb.load("/path/to/binary")
### Break at line 10 of the specified source file
lldb.breakline(file="/path/to/source.c", line=10)
### Break in main()
lldb.breakfun(symbol="main")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.