]> git.proxmox.com Git - wasi-libc.git/blame - libc-top-half/musl/src/thread/__tls_get_addr.c
Update to musl 1.1.22.
[wasi-libc.git] / libc-top-half / musl / src / thread / __tls_get_addr.c
CommitLineData
320054e8
DG
1#include "pthread_impl.h"
2
3void *__tls_get_addr(tls_mod_off_t *v)
4{
5 pthread_t self = __pthread_self();
f41256b6 6 return (void *)(self->dtv[v[0]] + v[1]);
320054e8 7}