Re: [PATCH V6 02/17] perf tools: Ensure thread-stack is flushed

2015-06-18 Thread Adrian Hunter
On 19/06/2015 12:56 a.m., Arnaldo Carvalho de Melo wrote: Em Fri, May 29, 2015 at 04:33:30PM +0300, Adrian Hunter escreveu: The thread-stack represents a thread's current stack. When a thread exits there can still be many functions on the stack e.g. exit() can be called many levels deep, so all

Re: [PATCH V6 02/17] perf tools: Ensure thread-stack is flushed

2015-06-18 Thread Arnaldo Carvalho de Melo
Em Fri, May 29, 2015 at 04:33:30PM +0300, Adrian Hunter escreveu: > The thread-stack represents a thread's current stack. When > a thread exits there can still be many functions on the stack > e.g. exit() can be called many levels deep, so all the callers > will never return. To get that informat

[PATCH V6 02/17] perf tools: Ensure thread-stack is flushed

2015-05-29 Thread Adrian Hunter
The thread-stack represents a thread's current stack. When a thread exits there can still be many functions on the stack e.g. exit() can be called many levels deep, so all the callers will never return. To get that information output, the thread-stack must be flushed. Previously it was assumed t