musl-tcc/src/thread/__tls_get_addr.c

8 lines
148 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include "pthread_impl.h"
void *__tls_get_addr(tls_mod_off_t *v)
{
pthread_t self = __pthread_self();
return (void *)(self->dtv[v[0]] + v[1]);
}