Thread ids are no longer pthread_t.

This commit is contained in:
Bartosz Taudul 2019-12-13 15:57:08 +01:00
parent 4ef2ce4622
commit 4eaa3d90dd

View File

@ -144,11 +144,6 @@ const char* GetThreadName( uint64_t id )
} }
} }
# endif # 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__ # elif defined __linux__
int cs, fd; int cs, fd;
char path[32]; char path[32];