mirror of
https://github.com/fluencelabs/musl
synced 2025-06-27 21:52:02 +00:00
8 lines
138 B
C
8 lines
138 B
C
#include "pthread_impl.h"
|
|
|
|
void *pthread_getspecific(pthread_key_t k)
|
|
{
|
|
struct pthread *self = __pthread_self();
|
|
return self->tsd[k];
|
|
}
|