This commit is contained in:
Kovid Goyal 2018-07-26 07:03:41 +05:30
parent d72098bdf8
commit f06e04ffc5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -25,7 +25,8 @@ set_thread_name(const char *name) {
#if defined(__APPLE__)
ret = pthread_setname_np(name);
#elif defined(__FreeBSD__)
ret = pthread_set_name_np(pthread_self(), name);
pthread_set_name_np(pthread_self(), name);
ret = 0;
#else
ret = pthread_setname_np(pthread_self(), name);
#endif