HomeSort by: relevance | last modified time | path
    Searched defs:tls_allocation (Results 1 - 1 of 1) sorted by relevancy

  /src/lib/libc/tls/
tls.c 63 static size_t tls_allocation; variable in typeref:typename:size_t
91 tls_allocation = tls_size;
93 tls_allocation = roundup2(tls_size, alignof(max_align_t));
97 tls_allocation + sizeof(*tcb), PROT_READ | PROT_WRITE,
102 p = calloc(1, tls_allocation + sizeof(*tcb));
115 tcb = (struct tls_tcb *)(p + tls_allocation);
136 p = (uint8_t *)tcb - tls_allocation;
139 munmap(p, tls_allocation + sizeof(*tcb));

Completed in 12 milliseconds