mirror of
https://github.com/wolfpld/tracy
synced 2025-04-30 04:43:53 +00:00
Do the same trick as concurrentqueue.h for GetCurrentThreadId().
This commit is contained in:
parent
1c4dcf7e52
commit
809d98162b
@ -13,17 +13,6 @@
|
|||||||
namespace tracy
|
namespace tracy
|
||||||
{
|
{
|
||||||
|
|
||||||
uint64_t GetThreadHandle()
|
|
||||||
{
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
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& thread, const char* name )
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
@ -1,13 +1,29 @@
|
|||||||
#ifndef __TRACYSYSTEM_HPP__
|
#ifndef __TRACYSYSTEM_HPP__
|
||||||
#define __TRACYSYSTEM_HPP__
|
#define __TRACYSYSTEM_HPP__
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
extern "C" __declspec(dllimport) unsigned long __stdcall GetCurrentThreadId(void);
|
||||||
|
#else
|
||||||
|
# include <pthread.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
namespace tracy
|
namespace tracy
|
||||||
{
|
{
|
||||||
|
|
||||||
uint64_t GetThreadHandle();
|
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& thread, const char* name );
|
||||||
const char* GetThreadName( uint64_t id );
|
const char* GetThreadName( uint64_t id );
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user