1
0

pthread_getspecific.c 138 B

1234567
  1. #include "pthread_impl.h"
  2. void *pthread_getspecific(pthread_key_t k)
  3. {
  4. struct pthread *self = __pthread_self();
  5. return self->tsd[k];
  6. }