On Fri, Dec 19, 2008 at 09:14:37PM +0100, Roland Mainz wrote: > Will this even work if another library is used for |malloc()|&&|free()| > calls (IMO it should work but I am not sure about the case when an > application is linked via -B direct) ?
Yes, it will: malloc() and friends are marked as NODIRECT in libc, which means they can be interposed on freely by the application, even when they are called from within libc itself.
