I have a program that has a peak memory usage of 66MB that I'm trying to profile with Valgrind Massif. Unfortunately, Massif shows only 800KB of peak memory usage. On the other hand, top tells me that 65MB are shared memory. Is it possible to profile shared memory usage of a program in Linux?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
At least with Valgrind 3.7.0, you have the below option which should give what you need: --pages-as-heap=no|yes profile memory at the page level [no] |
|||
|
cat /proc/pid/maps? – sarnold Jun 22 '12 at 1:25