Interposing calloc on Linux
Posted by admin on September 8, 2010
2 comments
The library interpose mechanism offers a nice way to replace some of the standard library functions with our own version for a wide range of purposes (analytics, debug,etc). So how this is happening? Long story short, you have to create a shared library which will be added to the list of preloaded libraries before the [...]