Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
1k views

mtrace for a fortran program

I'm trying to use mtrace to detect memory leaks in a fortran program. I'm using the gfortran compiler. See the wikipedia entry for a (working) C example of mtrace: http://en.wikipedia.org/wiki/Mtrace ...
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 ...
1
vote
2answers
39 views

MALLOC_TRACE for Windows

In our company we have an inhouse framework similar to the mtrace (MALLOC_TRACE) functionality in glibc for detecting memory leaks. This framework is written to run on Windows, but it doesn't work ...
0
votes
1answer
213 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
675 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