mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
3aaa718741
It was working before, because there was _GNU_SOURCE define injection. Without this macro defined pthread_[gs]etname_np() functions are not exposed in the API.
40 lines
980 B
C++
40 lines
980 B
C++
#ifndef __TRACYSYSTEM_HPP__
|
|
#define __TRACYSYSTEM_HPP__
|
|
|
|
#ifdef TRACY_ENABLE
|
|
# if defined __ANDROID__ || defined __CYGWIN__
|
|
# define TRACY_COLLECT_THREAD_NAMES
|
|
# endif
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
extern "C" __declspec(dllimport) unsigned long __stdcall GetCurrentThreadId(void);
|
|
#else
|
|
# include <pthread.h>
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
#include <thread>
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
static inline uint64_t GetThreadHandle()
|
|
{
|
|
#ifdef _WIN32
|
|
static_assert( sizeof( decltype( GetCurrentThreadId() ) ) <= sizeof( uint64_t ), "Thread handle too big to fit in protocol" );
|
|
return uint64_t( GetCurrentThreadId() );
|
|
#else
|
|
static_assert( sizeof( decltype( pthread_self() ) ) <= sizeof( uint64_t ), "Thread handle too big to fit in protocol" );
|
|
return uint64_t( pthread_self() );
|
|
#endif
|
|
}
|
|
|
|
void SetThreadName( std::thread& thread, const char* name );
|
|
void SetThreadName( std::thread::native_handle_type handle, const char* name );
|
|
const char* GetThreadName( uint64_t id );
|
|
|
|
}
|
|
|
|
#endif
|