mirror of https://github.com/libsdl-org/SDL
cmake: really fix detection of pthread_setname_np() on Apple platforms.
This commit is contained in:
parent
718a880f91
commit
9b061c04e7
|
@ -992,9 +992,9 @@ macro(CheckPTHREAD)
|
|||
#include <pthread.h>
|
||||
int main(int argc, char **argv) {
|
||||
#ifdef __APPLE__
|
||||
pthread_setname_np(pthread_self());
|
||||
pthread_setname_np(\"\");
|
||||
#else
|
||||
pthread_setname_np(pthread_self(), \"\");
|
||||
pthread_setname_np(pthread_self(),\"\");
|
||||
#endif
|
||||
return 0;
|
||||
}" HAVE_PTHREAD_SETNAME_NP)
|
||||
|
|
Loading…
Reference in New Issue