cmake: fix detection of pthread_setname_np() on Apple platforms.

This commit is contained in:
Ozkan Sezer 2023-02-13 11:55:40 +03:00
parent 93ed3148ba
commit f7f61af12b

View file

@ -872,7 +872,11 @@ macro(CheckPTHREAD)
check_c_source_compiles("
#include <pthread.h>
int main(int argc, char **argv) {
#ifdef __APPLE__
pthread_setname_np(pthread_self());
#else
pthread_setname_np(pthread_self(), \"\");
#endif
return 0;
}" HAVE_PTHREAD_SETNAME_NP)
if (HAVE_PTHREAD_NP_H)