osdep: NetBSD pthread_setname_np()

From: bugmen0t on github

Fixes #1207.
This commit is contained in:
wm4
2014-10-22 01:02:55 +02:00
parent 7eb047b241
commit 2e81698d28
3 changed files with 15 additions and 1 deletions

View File

@@ -19,6 +19,10 @@
#include "config.h"
#if HAVE_BSD_THREAD_NAME
#include <pthread_np.h>
#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