mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 13:32:47 +01:00
No longer check osx compatibility in RenameThread
10.5 support has been dropped for some time now.
This commit is contained in:
parent
fe042dbe9f
commit
850c570d68
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user