aboutsummaryrefslogtreecommitdiffstats
path: root/src/thread/Name.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-01-06 12:54:46 +0100
committerMax Kellermann <max@duempel.org>2015-01-06 12:54:46 +0100
commit674d14879ff638e9ed34ef7d8557f2aa33b5e204 (patch)
tree31c2fa65808b08d14021b265ab9ce9b4bcd4e2f1 /src/thread/Name.hxx
parent81df45a893e8ac459ce10f0514058003027c0830 (diff)
parent37e9010887783c307355f3144786ed72e8a973b0 (diff)
downloadmpd-674d14879ff638e9ed34ef7d8557f2aa33b5e204.tar.gz
mpd-674d14879ff638e9ed34ef7d8557f2aa33b5e204.tar.xz
mpd-674d14879ff638e9ed34ef7d8557f2aa33b5e204.zip
Merge branch 'v0.19.x'
Diffstat (limited to 'src/thread/Name.hxx')
-rw-r--r--src/thread/Name.hxx20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/thread/Name.hxx b/src/thread/Name.hxx
index 0d70de139..1576b3fde 100644
--- a/src/thread/Name.hxx
+++ b/src/thread/Name.hxx
@@ -20,17 +20,25 @@
#ifndef MPD_THREAD_NAME_HXX
#define MPD_THREAD_NAME_HXX
-#ifdef HAVE_PTHREAD_SETNAME_NP
-#include <pthread.h>
-#include <stdio.h>
+#if defined(HAVE_PTHREAD_SETNAME_NP) && !defined(__NetBSD__)
+# define HAVE_THREAD_NAME
+# include <pthread.h>
+# include <stdio.h>
#elif defined(HAVE_PRCTL)
-#include <sys/prctl.h>
+# include <sys/prctl.h>
+# ifdef PR_SET_NAME
+# define HAVE_THREAD_NAME
+# endif
#endif
static inline void
SetThreadName(const char *name)
{
-#ifdef HAVE_PTHREAD_SETNAME_NP
+#if defined(HAVE_PTHREAD_SETNAME_NP) && !defined(__NetBSD__)
+ /* not using pthread_setname_np() on NetBSD because it
+ requires a non-const pointer argument, which we don't have
+ here */
+
#ifdef __APPLE__
pthread_setname_np(name);
#else
@@ -47,7 +55,7 @@ template<typename... Args>
static inline void
FormatThreadName(const char *fmt, gcc_unused Args&&... args)
{
-#ifdef HAVE_PTHREAD_SETNAME_NP
+#ifdef HAVE_THREAD_NAME
char buffer[16];
snprintf(buffer, sizeof(buffer), fmt, args...);
SetThreadName(buffer);