mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
57fd59b73b
This commit adds a number of changes to platform-detection and compile-time directives required to support building ClickHouse on Solaris-derived systems, most notably illumos.
40 lines
1016 B
C++
40 lines
1016 B
C++
#include <common/getThreadId.h>
|
|
|
|
#if defined(OS_ANDROID)
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
#elif defined(OS_LINUX)
|
|
#include <unistd.h>
|
|
#include <syscall.h>
|
|
#elif defined(OS_FREEBSD)
|
|
#include <pthread_np.h>
|
|
#else
|
|
#include <pthread.h>
|
|
#include <stdexcept>
|
|
#endif
|
|
|
|
|
|
static thread_local uint64_t current_tid = 0;
|
|
uint64_t getThreadId()
|
|
{
|
|
if (!current_tid)
|
|
{
|
|
#if defined(OS_ANDROID)
|
|
current_tid = gettid();
|
|
#elif defined(OS_LINUX)
|
|
current_tid = syscall(SYS_gettid); /// This call is always successful. - man gettid
|
|
#elif defined(OS_FREEBSD)
|
|
current_tid = pthread_getthreadid_np();
|
|
#elif defined(OS_SUNOS)
|
|
// On Solaris-derived systems, this returns the ID of the LWP, analogous
|
|
// to a thread.
|
|
current_tid = static_cast<uint64_t>(pthread_self());
|
|
#else
|
|
if (0 != pthread_threadid_np(nullptr, ¤t_tid))
|
|
throw std::logic_error("pthread_threadid_np returned error");
|
|
#endif
|
|
}
|
|
|
|
return current_tid;
|
|
}
|