aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/microhttpd/mhd_threads.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/microhttpd/mhd_threads.c b/src/microhttpd/mhd_threads.c
index 713c8348..80a320c8 100644
--- a/src/microhttpd/mhd_threads.c
+++ b/src/microhttpd/mhd_threads.c
@@ -84,12 +84,16 @@ static int MHD_set_thread_name_(const MHD_thread_ID_ thread_id, const char *thre
84} 84}
85 85
86 86
87#ifndef __QNXNTO__
87/** 88/**
88 * Set current thread name 89 * Set current thread name
89 * @param n name to set 90 * @param n name to set
90 * @return non-zero on success, zero otherwise 91 * @return non-zero on success, zero otherwise
91 */ 92 */
92#define MHD_set_cur_thread_name_(n) MHD_set_thread_name_(pthread_self(),(n)) 93#define MHD_set_cur_thread_name_(n) MHD_set_thread_name_(pthread_self(),(n))
94#else /* __QNXNTO__ */
95#define MHD_set_cur_thread_name_(n) MHD_set_thread_name_(0,(n))
96#endif /* __QNXNTO__ */
93#elif defined(HAVE_PTHREAD_SETNAME_NP_DARWIN) 97#elif defined(HAVE_PTHREAD_SETNAME_NP_DARWIN)
94 98
95/** 99/**