Tagged Questions
2
votes
4answers
3k views
GLIBC: debugging memory leaks: how to interpret output of mtrace()
I’m trying to debug a memory leak problem. I’m using mtrace() to get a malloc/free/realloc trace. I’ve ran my prog and have now a huge log file. So far so good. But I have problems interpreting the ...
0
votes
1answer
220 views
mtrace + MALLOC_TRACE - disable buffering
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 ...
0
votes
1answer
723 views
Enable mtrace (MALLOC_TRACE) for binary program
How can I enable mtrace() (and MALLOC_TRACE env) for a binary program without sources?
mtrace is feature of glibc: http://www.gnu.org/s/hello/manual/libc/Allocation-Debugging.html
Thanks