Re: [PATCH 15/19] perf tools: use XSI-complaint version of strerror_r() instead of GNU-specific

2012-07-25 Thread Namhyung Kim
On Wed, 25 Jul 2012 14:41:30 -0300, Arnaldo Carvalho de Melo wrote: > From: Kirill A. Shutemov > > Perf uses GNU-specific version of strerror_r(). The GNU-specific strerror_r() > returns a pointer to a string containing the error message. This may be > either > a pointer to a string that the fun

Re: [PATCH 15/19] perf tools: use XSI-complaint version of strerror_r() instead of GNU-specific

2012-07-25 Thread Ingo Molnar
* Arnaldo Carvalho de Melo wrote: > Em Wed, Jul 25, 2012 at 08:54:59PM +0300, Kirill A. Shutemov escreveu: > > Could you take subject from updated patch? This one: > > > > perf: fix strerror_r() usage > > Sorry, missed that :-\ I think it was because you didn't send > the new patch on its own

Re: [PATCH 15/19] perf tools: use XSI-complaint version of strerror_r() instead of GNU-specific

2012-07-25 Thread Arnaldo Carvalho de Melo
Em Wed, Jul 25, 2012 at 08:54:59PM +0300, Kirill A. Shutemov escreveu: > Could you take subject from updated patch? This one: > > perf: fix strerror_r() usage Sorry, missed that :-\ I think it was because you didn't send the new patch on its own, but keeping the old subject line and inlining the

Re: [PATCH 15/19] perf tools: use XSI-complaint version of strerror_r() instead of GNU-specific

2012-07-25 Thread Kirill A. Shutemov
Could you take subject from updated patch? This one: perf: fix strerror_r() usage -- Kirill A. Shutemov -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.

[PATCH 15/19] perf tools: use XSI-complaint version of strerror_r() instead of GNU-specific

2012-07-25 Thread Arnaldo Carvalho de Melo
From: Kirill A. Shutemov Perf uses GNU-specific version of strerror_r(). The GNU-specific strerror_r() returns a pointer to a string containing the error message. This may be either a pointer to a string that the function stores in buf, or a pointer to some (immutable) static string (in which ca