how can I disable buffering on mtrace and output file with name from MALLOC_TRACE ??

the mtrace is started as:

$ cat libmtrace1.c
#include <mcheck.h>
static __attribute__((constructor)) void mtrace_install(void) {
    atexit(&muntrace);
    mtrace();
}
$gcc libmtrace1.c -fPIC -shared -o libmtrace1.so
$LD_PRELOAD=./libmtrace1.so MALLOC_TRACE=mtrace_log /bin/ls 
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Hey. Just write youself an another mtrace-like plugin and install it using malloc_hook(3).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.