Tagged Questions

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
38 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 ...