From 724d6267c8e71bb28f129a820f2dcb67fa137e56 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Fri, 15 Sep 2017 22:09:37 -0700 Subject: Add a check for pthread_setname_np with three parameters As found in NetBSD. --- common/threads.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common') diff --git a/common/threads.c b/common/threads.c index 0761a324..dbd196e8 100644 --- a/common/threads.c +++ b/common/threads.c @@ -500,6 +500,8 @@ void althrd_setname(althrd_t thr, const char *name) #if defined(PTHREAD_SETNAME_NP_ONE_PARAM) if(althrd_equal(thr, althrd_current())) pthread_setname_np(name); +#elif defined(PTHREAD_SETNAME_NP_THREE_PARAMS) + pthread_setname_np(thr, "%s", (void*)name); #else pthread_setname_np(thr, name); #endif -- cgit v1.2.3