blob: d3d09fa2f683f52227bf155fe43228ca81bec25a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include "pthread_impl.h"
static void *__pthread_getspecific(pthread_key_t k)
{
struct pthread *self = __pthread_self();
return self->tsd[k];
}
weak_alias(__pthread_getspecific, pthread_getspecific);
|