|
From: nithya p. <vis...@ya...> - 2005-03-19 12:32:04
|
dear team, I wish to draw a graph with time along the X-axis and the memory usage along the Y- axis. With the massif utility,we get the memory usage for each and every function.I wish to know if there is way by which we can get only the total memory usage alone raher having the individual function utilization. thanks in advance nithya --------------------------------- Do you Yahoo!? Yahoo! Small Business - Try our new resources site! |
|
From: Nicholas N. <nj...@cs...> - 2005-03-19 16:36:04
|
On Sat, 19 Mar 2005, nithya prabha wrote: > I wish to draw a graph with time along the X-axis and the memory usage > along the Y- axis. With the massif utility,we get the memory usage for > each and every function. Strictly speaking, it gives the memory usage for call sites rather than functions, and it shows that for the 20 allocation sites that allocate the most memory, and the remainder get combined into a single "other" band. > I wish to know if there is way by which we can get only the total memory > usage alone raher having the individual function utilization. Just ignore the bands in the graph, and look only at the top line -- that is the total memory consumption. N |