Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf top: Use strerror_r instead of strerror

Use strerror_r instead of strerror in error message for thread-safety.

Signed-off-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Naohiro Aota <naota@elisp.net>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/20140814022238.3545.15569.stgit@kbuild-fedora.novalocal
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Masami Hiramatsu and committed by
Arnaldo Carvalho de Melo
809adea6 6e81c74c

+1 -1
+1 -1
tools/perf/builtin-top.c
··· 899 899 900 900 if (perf_evlist__mmap(evlist, opts->mmap_pages, false) < 0) { 901 901 ui__error("Failed to mmap with %d (%s)\n", 902 - errno, strerror(errno)); 902 + errno, strerror_r(errno, msg, sizeof(msg))); 903 903 goto out_err; 904 904 } 905 905