summaryrefslogtreecommitdiff
path: root/sysutils/lttng-ust/files
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/lttng-ust/files')
-rw-r--r--sysutils/lttng-ust/files/patch-liblttng-ust_compat.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/sysutils/lttng-ust/files/patch-liblttng-ust_compat.h b/sysutils/lttng-ust/files/patch-liblttng-ust_compat.h
new file mode 100644
index 000000000000..6ccb5caa2d44
--- /dev/null
+++ b/sysutils/lttng-ust/files/patch-liblttng-ust_compat.h
@@ -0,0 +1,20 @@
+--- liblttng-ust/compat.h.orig 2016-11-29 01:46:24 UTC
++++ liblttng-ust/compat.h
+@@ -73,9 +73,15 @@ void lttng_ust_getprocname(char *name)
+ }
+
+ /*
+- * If pthread_set_name_np is available.
++ * If pthread_setname_np or pthread_set_name_np is available.
+ */
+-#ifdef HAVE_PTHREAD_SET_NAME_NP
++#ifdef HAVE_PTHREAD_SETNAME_NP
++static inline
++int lttng_pthread_setname_np(pthread_t thread, const char *name)
++{
++ return pthread_setname_np(thread, name);
++}
++#elif defined(HAVE_PTHREAD_SET_NAME_NP)
+ static inline
+ int lttng_pthread_setname_np(pthread_t thread, const char *name)
+ {