How to see heap and stack usage of a function in c using valgrind?
I am working on a embedded system. We have limited stack and heap in our embedded system typically 64k (ram). I am trying to use polar-ssl library calls. Is there any tools which tells how much stack and heap memory is used by a C function?
Is there any option is in valgrind which prints the following:
There is a valgrind tool massif that measures how much heap memory an application uses. Similarly memcheck can give you stack trace. More explanation here
http://wiki.eclipse.org/Linux_Tools_Project/Valgrind/User_Guide#Analyzing_Memcheck_Profile_Results
链接地址: http://www.djcxy.com/p/59122.html上一篇: ManyToOne与where子句