Skip to content

Instantly share code, notes, and snippets.

@nsahoo
Created April 30, 2014 06:38
Show Gist options
  • Save nsahoo/cb889449850e05ee1290 to your computer and use it in GitHub Desktop.
Save nsahoo/cb889449850e05ee1290 to your computer and use it in GitHub Desktop.
how to check memory leak using valgrind
# check the memory usage using valgrind
valgrind --tool=memcheck program_name
# for detailed leak analysis, use --leak-check=yes
valgrind --tool=memcheck --leak-check=yes program_name
# if the above step doesn't show up all the memory leaks, use --show-reachable=yes
valgrind --tool=memcheck --leak-check=yes --show-reachable=yes program_name
# redirect the valgrind output to a log file
valgrind --tool=memcheck --leak-check=yes --log-file=valgrind.log program_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment