From: Samuel Thibault Date: Sat, 13 Jan 2018 11:33:15 +0000 (+0100) Subject: u_thread: Use pthread_setname_np on linux only. X-Git-Tag: upstream/18.1.0~2470 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9131e6d3c2dcc30260e23f2232b44c8cffc6f315;p=platform%2Fupstream%2Fmesa.git u_thread: Use pthread_setname_np on linux only. pthread_setname_np was added in glibc 2.12 for the Linux port only, other ports do not necessarily have it. Signed-off-by: Jose Fonseca --- diff --git a/src/util/u_thread.h b/src/util/u_thread.h index 26cc0b0..8c6e0bd 100644 --- a/src/util/u_thread.h +++ b/src/util/u_thread.h @@ -62,7 +62,8 @@ static inline void u_thread_setname( const char *name ) { #if defined(HAVE_PTHREAD) # if defined(__GNU_LIBRARY__) && defined(__GLIBC__) && defined(__GLIBC_MINOR__) && \ - (__GLIBC__ >= 3 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 12)) + (__GLIBC__ >= 3 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 12)) && \ + defined(__linux__) pthread_setname_np(pthread_self(), name); # endif #endif