static symbols too?
[This article was first published on BioStatMatt, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Continuing in the context of this previous post…
1. Select a static symbol from the R sources, like Connections
$ grep "static Rconnection Connections" src/main/connections.c static Rconnection Connections[NCONNECTIONS];
2. Get its address
$ objdump -t `R RHOME`/bin/exec/R | awk '/ Connections/ {print $1}' 000000000093b700
3. Use the symbol
> library(inline) > code <- " + typedef struct { char *class, *description; } *Rconnection; + Rconnection *Connections = (Rconnection*)0x000000000093b700; + return mkString(Connections[0]->description); + " > ConZeroDesc <- cfunction(signature(), code, language="C") > ConZeroDesc() [1] "stdin"
This effect could probably be prevented by selecting additional compiler and/or and linker options.
P.S. Nice job Oleg Sklyar, Duncan Murdoch, Mike Smith, Dirk Eddelbuettel, Romain Francois with inline-0.3.5
To leave a comment for the author, please follow the link and comment on their blog: BioStatMatt.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.