From 4eaa3d90dd60639c8f8172675e60512d71786db9 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 13 Dec 2019 15:57:08 +0100 Subject: [PATCH] Thread ids are no longer pthread_t. --- common/TracySystem.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/common/TracySystem.cpp b/common/TracySystem.cpp index 7782ed7a..cee3765a 100644 --- a/common/TracySystem.cpp +++ b/common/TracySystem.cpp @@ -144,11 +144,6 @@ const char* GetThreadName( uint64_t id ) } } # endif -# elif defined __GLIBC__ && !defined __ANDROID__ && !defined __EMSCRIPTEN__ && !defined __CYGWIN__ - if( pthread_getname_np( (pthread_t)id, buf, 256 ) == 0 ) - { - return buf; - } # elif defined __linux__ int cs, fd; char path[32];