|
From: Nicholas N. <nj...@cs...> - 2006-11-20 21:44:26
|
On Mon, 20 Nov 2006, Bart Van Assche wrote: > If I may ask a dumb question: the massif documentation ( > http://www.valgrind.org/docs/manual/ms-manual.html) specifies that it is > possible to obtain information about stack sizes with massif. Which command > line options should I pass to massif in order to obtain information about > the maximum number of bytes used on each thread's stack during a program's > lifetime ? Massif doesn't provide that information. At each census point it sums the size of all stacks and treats them as a single allocation. If they're in the top 20, you'll see them in the graph. Nick |