PPC port cleaned up, static linking works well now.
[musl] / src / env / __init_tls.c
index ab5992c..c71f49c 100644 (file)
@@ -56,10 +56,12 @@ typedef Elf64_Phdr Phdr;
 void __init_tls(size_t *aux)
 {
        unsigned char *p, *mem;
-       size_t n, d;
+       size_t n;
        Phdr *phdr, *tls_phdr=0;
        size_t base = 0;
 
+       libc.tls_size = sizeof(struct pthread);
+
        for (p=(void *)aux[AT_PHDR],n=aux[AT_PHNUM]; n; n--,p+=aux[AT_PHENT]) {
                phdr = (void *)p;
                if (phdr->p_type == PT_PHDR)