Top "Valgrind" questions

Valgrind is a dynamic analysis tool for Linux, OS X, Android, and Solaris systems.

Make callgrind show all function calls in the kcachegrind callgraph

I was using valgrind tool - callgrind and kcachegrind for profiling a large project and was wondering if there is …

valgrind callgrind kcachegrind
How to get in script whether valgrind found memory leaks?

I am running valgrind in a bash script, and directing the valgrind's output to a file. Like this : valgrind --leak-check=…

linux bash valgrind
Is it normal that running python under valgrind shows many errors with memory?

I've tried to debug memory crash in my Python C extension and tried to run script under valgrind. I found …

python debugging memory-leaks valgrind python-c-extension
Valgrind in ARM Cortex-A8 Issue "configure: error: Unsupported host architecture"

I have found in my actual program for ARM CortexA8 with linux a following issue: ´*** glibc detected *** ./PRUssExternal: double free …

arm valgrind embedded-linux cortex-a8
Callgrind: Profile a specific part of my code

I'm trying to profile (with Callgrind) a specific part of my code by removing noise and computation that I don't …

c++ profiling valgrind callgrind