Description Usage Arguments Details Value See Also Examples
The initializer that creates a "handle" for lldb.
1 |
args |
process name |
setdefault |
if |
This function will automatically update the default handle. If
An object of class lldb_handle
; an external pointer.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
library(lldbR)
lldb.load("/path/to/binary")
handle1 <- get.default.handle()
handle2 <- lldb.load("/path/to/another/binary", setdefault=FALSE)
identical(handle1, get.default.handle()) # TRUE
identical(handle2, get.default.handle()) # FALSE
set.default.handle(handle2)
identical(handle2, get.default.handle()) # TRUE
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.