memory debugger and profiler
Valgrind is a GPL'd tool to help you find memory-management problems in your
programs. When a program is run under Valgrind's supervision, all reads and
writes of memory are checked, and calls to malloc/new/free/delete are
intercepted.
.
Valgrind can debug more or less any dynamically-linked ELF x86/Linux,
amd64/Linux and ppc/Linux executables, without modification, recompilation,
or anything.
.
Valgrind provides a generic infrastructure for supervising the execution of
Recent comments