#include #if defined(__APPLE__) || defined(OS_SUNOS) #elif defined(__FreeBSD__) #include #else #include #endif #include #include #include namespace DB { namespace ErrorCodes { extern const int PTHREAD_ERROR; } } /// Cache thread_name to avoid prctl(PR_GET_NAME) for query_log/text_log static thread_local std::string thread_name; void setThreadName(const char * name) { #ifndef NDEBUG if (strlen(name) > 15) throw DB::Exception("Thread name cannot be longer than 15 bytes", DB::ErrorCodes::PTHREAD_ERROR); #endif #if defined(OS_FREEBSD) pthread_set_name_np(pthread_self(), name); if ((false)) #elif defined(OS_DARWIN) if (0 != pthread_setname_np(name)) #elif defined(OS_SUNOS) if (0 != pthread_setname_np(pthread_self(), name)) #else if (0 != prctl(PR_SET_NAME, name, 0, 0, 0)) #endif DB::throwFromErrno("Cannot set thread name with prctl(PR_SET_NAME, ...)", DB::ErrorCodes::PTHREAD_ERROR); thread_name = name; } const std::string & getThreadName() { if (!thread_name.empty()) return thread_name; thread_name.resize(16); #if defined(__APPLE__) || defined(OS_SUNOS) if (pthread_getname_np(pthread_self(), thread_name.data(), thread_name.size())) throw DB::Exception("Cannot get thread name with pthread_getname_np()", DB::ErrorCodes::PTHREAD_ERROR); #elif defined(__FreeBSD__) // TODO: make test. freebsd will have this function soon https://freshbsd.org/commit/freebsd/r337983 // if (pthread_get_name_np(pthread_self(), thread_name.data(), thread_name.size())) // throw DB::Exception("Cannot get thread name with pthread_get_name_np()", DB::ErrorCodes::PTHREAD_ERROR); #else if (0 != prctl(PR_GET_NAME, thread_name.data(), 0, 0, 0)) DB::throwFromErrno("Cannot get thread name with prctl(PR_GET_NAME)", DB::ErrorCodes::PTHREAD_ERROR); #endif thread_name.resize(std::strlen(thread_name.data())); return thread_name; }