Merge #5366: No longer check osx compatibility in RenameThread

850c570 No longer check osx compatibility in RenameThread (Michael Ford)
This commit is contained in:
Wladimir J. van der Laan 2015-02-18 17:36:16 +01:00
commit 47a79bb880
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 1 additions and 6 deletions

View File

@ -698,13 +698,8 @@ void RenameThread(const char* name)
// removed. // removed.
pthread_set_name_np(pthread_self(), name); pthread_set_name_np(pthread_self(), name);
#elif defined(MAC_OSX) && defined(__MAC_OS_X_VERSION_MAX_ALLOWED) #elif defined(MAC_OSX)
// pthread_setname_np is XCode 10.6-and-later
#if __MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
pthread_setname_np(name); pthread_setname_np(name);
#endif
#else #else
// Prevent warnings for unused parameters... // Prevent warnings for unused parameters...
(void)name; (void)name;