Daily Archives: September 8, 2010

Interposing calloc on Linux

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 [...]