#ifndef __TRACYSYSTEM_HPP__ #define __TRACYSYSTEM_HPP__ #if defined _WIN32 || defined __CYGWIN__ # ifndef _WINDOWS_ extern "C" __declspec(dllimport) unsigned long __stdcall GetCurrentThreadId(void); # endif #else # include #endif #ifdef __linux__ # include # ifdef __ANDROID__ # include # else # include # endif #endif #include #include "TracyApi.h" namespace tracy { namespace detail { static inline uint64_t GetThreadHandleImpl() { #if defined _WIN32 || defined __CYGWIN__ static_assert( sizeof( decltype( GetCurrentThreadId() ) ) <= sizeof( uint64_t ), "Thread handle too big to fit in protocol" ); return uint64_t( GetCurrentThreadId() ); #elif defined __APPLE__ uint64_t id; pthread_threadid_np( pthread_self(), &id ); return id; #elif defined __ANDROID__ return (uint64_t)gettid(); #elif defined __linux__ return (uint64_t)syscall( SYS_gettid ); #else static_assert( sizeof( decltype( pthread_self() ) ) <= sizeof( uint64_t ), "Thread handle too big to fit in protocol" ); return uint64_t( pthread_self() ); #endif } } #ifdef TRACY_ENABLE TRACY_API uint64_t GetThreadHandle(); #else static inline uint64_t GetThreadHandle() { return detail::GetThreadHandleImpl(); } #endif void SetThreadName( const char* name ); const char* GetThreadName( uint64_t id ); } #endif