From 2e81698d2809836d4cd7f754a78598e7bdf96c0b Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 22 Oct 2014 01:02:55 +0200 Subject: osdep: NetBSD pthread_setname_np() From: bugmen0t on github Fixes #1207. --- osdep/threads.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'osdep') diff --git a/osdep/threads.c b/osdep/threads.c index 7a6174eb79..6ef08dbf49 100644 --- a/osdep/threads.c +++ b/osdep/threads.c @@ -19,6 +19,10 @@ #include "config.h" +#if HAVE_BSD_THREAD_NAME +#include +#endif + #include "threads.h" #include "timer.h" @@ -56,6 +60,8 @@ void mpthread_set_name(const char *name) } #elif HAVE_BSD_THREAD_NAME pthread_set_name_np(pthread_self(), tname); +#elif HAVE_NETBSD_THREAD_NAME + pthread_setname_np(pthread_self(), "%s", (void *)tname); #elif HAVE_OSX_THREAD_NAME pthread_setname_np(tname); #endif -- cgit v1.2.3