mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-30 04:37:50 +02:00
util.cpp: do not use pthread_setname_np on unsupported macOS versions
This commit is contained in:
parent
ff09f63b14
commit
22295b6527
1 changed files with 11 additions and 1 deletions
|
@ -22,6 +22,9 @@
|
||||||
#include <pthread_np.h>
|
#include <pthread_np.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(__APPLE__)
|
||||||
|
# include <AvailabilityMacros.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -143,8 +146,15 @@ namespace util
|
||||||
}
|
}
|
||||||
|
|
||||||
void SetThreadName (const char *name) {
|
void SetThreadName (const char *name) {
|
||||||
#if defined(__APPLE__) && !defined(__POWERPC__)
|
#if defined(__APPLE__)
|
||||||
|
# if (!defined(MAC_OS_X_VERSION_10_6) || \
|
||||||
|
(MAC_OS_X_VERSION_MAX_ALLOWED < 1060) || \
|
||||||
|
defined(__POWERPC__))
|
||||||
|
/* pthread_setname_np is not there on <10.6 and all PPC.
|
||||||
|
So do nothing. */
|
||||||
|
# else
|
||||||
pthread_setname_np((char*)name);
|
pthread_setname_np((char*)name);
|
||||||
|
# endif
|
||||||
#elif defined(__FreeBSD__) || defined(__OpenBSD__)
|
#elif defined(__FreeBSD__) || defined(__OpenBSD__)
|
||||||
pthread_set_name_np(pthread_self(), name);
|
pthread_set_name_np(pthread_self(), name);
|
||||||
#elif defined(__NetBSD__)
|
#elif defined(__NetBSD__)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue