optimize POSIX TSD for fast pthread_getspecific

This commit is contained in:
Rich Felker
2011-03-03 18:30:44 -05:00
parent a53d2f3425
commit b480808a6a
4 changed files with 14 additions and 9 deletions

View File

@ -2,7 +2,6 @@
void *pthread_getspecific(pthread_key_t k)
{
struct pthread *self = pthread_self();
if (!self->tsd) return 0;
struct pthread *self = __pthread_self();
return self->tsd[k];
}