tracy/common/TracySystem.hpp

81 lines
1.8 KiB
C++
Raw Normal View History

2017-09-10 15:46:20 +00:00
#ifndef __TRACYSYSTEM_HPP__
#define __TRACYSYSTEM_HPP__
#if defined _WIN32 || defined __CYGWIN__
2019-02-19 18:36:30 +00:00
# ifndef _WINDOWS_
extern "C" __declspec(dllimport) unsigned long __stdcall GetCurrentThreadId(void);
2019-02-19 18:36:30 +00:00
# endif
2019-11-05 19:09:40 +00:00
#elif defined __APPLE__ || ( !defined __ANDROID__ && !defined __linux__ )
# include <pthread.h>
#endif
2019-08-19 13:09:47 +00:00
#ifdef __linux__
2019-08-13 23:57:10 +00:00
# include <unistd.h>
2019-08-19 13:09:47 +00:00
# ifdef __ANDROID__
# include <sys/types.h>
# else
# include <sys/syscall.h>
# endif
2019-11-21 01:29:17 +00:00
#elif defined __FreeBSD__
# include <sys/thr.h>
#elif defined __NetBSD__ || defined __DragonFly__
# include <sys/lwp.h>
#elif defined __OpenBSD__
# include <unistd.h>
2019-08-13 23:57:10 +00:00
#endif
#include <stdint.h>
2017-09-10 15:46:20 +00:00
#include "TracyApi.h"
2017-09-10 15:46:20 +00:00
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() );
2017-11-03 10:09:31 +00:00
#elif defined __APPLE__
2017-11-03 09:49:49 +00:00
uint64_t id;
2017-11-03 10:12:17 +00:00
pthread_threadid_np( pthread_self(), &id );
2017-11-03 09:49:49 +00:00
return id;
2019-08-13 23:57:10 +00:00
#elif defined __ANDROID__
return (uint64_t)gettid();
#elif defined __linux__
return (uint64_t)syscall( SYS_gettid );
2019-11-21 01:29:17 +00:00
#elif defined __FreeBSD__
long id;
thr_self( &id );
return id;
#elif defined __NetBSD__
return _lwp_self();
#elif defined __DragonFly__
return lwp_gettid();
#elif defined __OpenBSD__
return getthrid();
#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 );
2017-09-10 15:46:20 +00:00
}
#endif