I’m developing on Linux/g++ and uses valgrind to verify memory usage. My question is:
How do I know where there is an allocation of memory in my application (including system libraries)? May be valgrind provides this functionality, or some similar tool.
I’m developing on Linux/g++ and uses valgrind to verify memory usage. My question is:
Share
If you want to profile memory usage, have a look at massif (valgrind tool).
Also try the excellent massif visualizer to visualize the results.