I'm working on updating the eduke32 port for OpenBSD to the latest release, which has since migrated to using loguru. When building under OpenBSD/amd64 7.1-stable, the following error is generated:
source/build/src/loguru.cpp:1152:5: error: use of undeclared identifier 'pthread_getname_np'; did you mean 'pthread_get_name_np'?
pthread_getname_np(pthread_self(), buffer, length);
^~~~~~~~~~~~~
pthread_get_name_np
/usr/include/pthread.np.h:50:6: note: 'pthread_get_name_np' declared here
void pthread_get_name_np(pthread_t, char *, size_t);
This is because OpenBSD's pthread_get_name_np() implementation does not alias pthread_getname_np like FreeBSD does.
Reviewing loguru.cpp, it appears that there are some attempts at OpenBSD support, including in the set_thread_name() & get_thread_name() implementations. However, while the set_thread_name() implementation seems to correctly use pthread_set_name_np() for FreeBSD & OpenBSD, unfortunately the get_thread_name() implementations doesn't have similar platform support and just tries to use pthread_getname_np().
I'm working on updating the
eduke32port for OpenBSD to the latest release, which has since migrated to using loguru. When building under OpenBSD/amd64 7.1-stable, the following error is generated:This is because OpenBSD's
pthread_get_name_np()implementation does not aliaspthread_getname_nplike FreeBSD does.Reviewing
loguru.cpp, it appears that there are some attempts at OpenBSD support, including in theset_thread_name()&get_thread_name()implementations. However, while theset_thread_name()implementation seems to correctly usepthread_set_name_np()for FreeBSD & OpenBSD, unfortunately theget_thread_name()implementations doesn't have similar platform support and just tries to usepthread_getname_np().