From 6cf241a8f80d9323b6ba22c17c54b3eb42ac1d7d Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Fri, 12 Mar 2021 08:28:50 +0100 Subject: Build fix for NetBSD (#1433) --- src/platform/posix/posix_thread.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/platform/posix/posix_thread.c b/src/platform/posix/posix_thread.c index fe21c3b5..c200990b 100644 --- a/src/platform/posix/posix_thread.c +++ b/src/platform/posix/posix_thread.c @@ -262,6 +262,12 @@ nni_plat_thr_set_name(nni_plat_thr *thr, const char *name) if ((thr == NULL) || (pthread_self() == thr->tid)) { pthread_setname_np(name); } +#elif defined(__NetBSD__) + if (thr == NULL) { + pthread_setname_np(pthread_self(), "%s", name); + } else { + pthread_setname_np(thr->tid, "%s", name); + } #else if (thr == NULL) { pthread_setname_np(pthread_self(), name); -- cgit v1.2.3-70-g09d2