Always fallback to using native thread name...

...even when TRACY_ENABLE is defined.
This commit is contained in:
ReplayCoding 2022-11-28 12:35:07 -08:00
parent 70e22ad045
commit 9da24b713c
No known key found for this signature in database

View File

@ -205,7 +205,8 @@ TRACY_API const char* GetThreadName( uint32_t id )
} }
ptr = ptr->next; ptr = ptr->next;
} }
#else #endif
#if defined _WIN32 #if defined _WIN32
# ifdef TRACY_UWP # ifdef TRACY_UWP
static auto _GetThreadDescription = &::GetThreadDescription; static auto _GetThreadDescription = &::GetThreadDescription;
@ -230,12 +231,7 @@ TRACY_API const char* GetThreadName( uint32_t id )
#elif defined __linux__ #elif defined __linux__
int cs, fd; int cs, fd;
char path[32]; char path[32];
# ifdef __ANDROID__ snprintf( path, sizeof( path ), "/proc/self/task/%d/comm", id );
int tid = gettid();
# else
int tid = (int) syscall( SYS_gettid );
# endif
snprintf( path, sizeof( path ), "/proc/self/task/%d/comm", tid );
sprintf( buf, "%" PRIu32, id ); sprintf( buf, "%" PRIu32, id );
# ifndef __ANDROID__ # ifndef __ANDROID__
pthread_setcancelstate( PTHREAD_CANCEL_DISABLE, &cs ); pthread_setcancelstate( PTHREAD_CANCEL_DISABLE, &cs );
@ -257,7 +253,7 @@ TRACY_API const char* GetThreadName( uint32_t id )
# endif # endif
return buf; return buf;
#endif #endif
#endif
sprintf( buf, "%" PRIu32, id ); sprintf( buf, "%" PRIu32, id );
return buf; return buf;
} }