5 #if defined(HAVE_CONFIG_H) 11 #if (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)) 13 #include <pthread_np.h> 18 #ifdef HAVE_SYS_PRCTL_H 19 #include <sys/prctl.h> 26 #if defined(PR_SET_NAME) 28 ::prctl(PR_SET_NAME, name, 0, 0, 0);
29 #elif (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)) 30 pthread_set_name_np(pthread_self(), name);
31 #elif defined(MAC_OSX) 32 pthread_setname_np(name);
41 #if defined(HAVE_THREAD_LOCAL) 43 static thread_local std::string g_thread_name;
static void SetInternalName(std::string name)
void ThreadRename(std::string &&)
Rename a thread both in terms of an internal (in-memory) name as well as its system thread name...
void ThreadSetInternalName(std::string &&)
Set the internal (in-memory) name of the current thread only.
const std::string & ThreadGetInternalName()
Get the thread's internal (in-memory) name; used e.g.
static const std::string empty_string
static void SetThreadName(const char *name)
Set the thread's name at the process level.