about summary refs log tree commit diff
path: root/src/env/__init_tls.c
Commit message (Expand)AuthorAgeFilesLines
* remove redundant pthread struct members repeated for layout purposesRich Felker2020-08-271-1/+1
* fix tls offsets when p_vaddr%p_align != 0 on TLS_ABOVE_TP targetsSzabolcs Nagy2019-05-161-1/+2
* overhaul i386 syscall mechanism not to depend on external asm sourceRich Felker2019-04-101-0/+2
* track all live threads in an AS-safe, fully-consistent linked listRich Felker2019-02-151-1/+4
* combine arch ABI's DTP_OFFSET into DTV pointersRich Felker2018-10-121-8/+8
* support setting of default thread stack size via PT_GNU_STACK headerRich Felker2018-09-181-0/+5
* define and use internal macros for hidden visibility, weak refsRich Felker2018-09-051-2/+1
* fix TLS layout of TLS variant I when there is a gap above TPSzabolcs Nagy2018-06-021-2/+8
* improve joinable/detached thread state handlingRich Felker2018-05-051-2/+2
* use a dedicated futex object for pthread_join instead of tid fieldRich Felker2018-05-021-1/+2
* fix support for initialized TLS in static PIE binariesRich Felker2016-12-201-0/+5
* unify static and dynamic linked implementations of thread-local storageRich Felker2015-11-121-31/+40
* fix misalignment of dtv in static-linked programs with odd-sized TLSRich Felker2015-04-231-1/+2
* remove dead store from static __init_tlsRich Felker2015-04-231-2/+0
* make __init_tp function static when static linkingRich Felker2015-04-231-0/+3
* remove useless visibility application from static-linking-only codeRich Felker2015-04-221-1/+1
* remove remnants of support for running in no-thread-pointer modeRich Felker2015-04-131-3/+2
* optimize out setting up robust list with kernel when not neededRich Felker2015-04-101-0/+1
* copy the dtv pointer to the end of the pthread struct for TLS_ABOVE_TP archsSzabolcs Nagy2015-03-111-1/+1
* fix over-alignment of TLS, insufficient builtin TLS on 64-bit archsRich Felker2015-03-061-2/+8
* fix #ifdef inside a macro argument list in __init_tls.cSzabolcs Nagy2014-08-131-4/+3
* eliminate use of cached pid from thread structureRich Felker2014-07-051-1/+1
* add locale frameworkRich Felker2014-07-021-0/+1
* separate __tls_get_addr implementation from dynamic linker/init_tlsRich Felker2014-06-191-5/+0
* simplify errno implementationRich Felker2014-06-101-1/+0
* add thread-pointer support for pre-2.6 kernels on i386Rich Felker2014-06-101-9/+4
* remove some cruft from libc/tls init codeRich Felker2014-04-071-2/+0
* remove cruft left behind when lazy thread pointer init was removedRich Felker2014-04-041-8/+0
* always initialize thread pointer at program startRich Felker2014-03-241-12/+43
* reduce static linking overhead from TLS support by inlining mmap syscallRich Felker2014-03-231-1/+9
* add system for resetting TLS to initial valuesRich Felker2013-08-031-14/+18
* fix omission of dtv setup in static linked programs on TLS variant I archsRich Felker2013-07-131-1/+1
* fix reference to libc struct in static tls init codeRich Felker2012-12-251-1/+1
* clean up sloppy nested inclusion from pthread_impl.hRich Felker2012-11-081-0/+2
* fix unused variable warningsRich Felker2012-11-011-1/+1
* fix crashes in static-linked multithreaded programs without TLSRich Felker2012-10-191-0/+2
* add support for TLS variant I, presently needed for arm and mipsRich Felker2012-10-151-1/+8
* clean up and refactor program initializationRich Felker2012-10-071-9/+2
* fix buggy TLS size/alignment computations in static-linked TLSRich Felker2012-10-061-5/+22
* support for TLS in dynamic-loaded (dlopen) modulesRich Felker2012-10-051-2/+2
* partial TLS support for dynamic-linked programsRich Felker2012-10-041-5/+5
* TLS (GNU/C11 thread-local storage) support for static-linked programsRich Felker2012-10-041-0/+71