Created
April 30, 2014 06:38
-
-
Save nsahoo/cb889449850e05ee1290 to your computer and use it in GitHub Desktop.
how to check memory leak using valgrind
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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