add system for resetting TLS to initial values
authorRich Felker <dalias@aerifal.cx>
Sat, 3 Aug 2013 20:27:30 +0000 (16:27 -0400)
committerRich Felker <dalias@aerifal.cx>
Sat, 3 Aug 2013 20:27:30 +0000 (16:27 -0400)
commit7c6c290695cb8726e876ff4fb8413913f661fc0b
tree9bba80c02f293fcf759bd9b2fe0004f99ac96fae
parent7356c2554e33cf16768616e8e3ae4a4f5a5aac17
add system for resetting TLS to initial values

this is needed for reused threads in the SIGEV_THREAD timer
notification system, and could be reused elsewhere in the future if
needed, though it should be refactored for such use.

for static linking, __init_tls.c is simply modified to export the TLS
info in a structure with external linkage, rather than using statics.
this perhaps makes the code more clear, since the statics were poorly
named for statics. the new __reset_tls.c is only linked if it is used.

for dynamic linking, the code is in dynlink.c. sharing code with
__copy_tls is not practical since __reset_tls must also re-zero
thread-local bss.
src/env/__init_tls.c
src/env/__reset_tls.c [new file with mode: 0644]
src/ldso/dynlink.c
src/time/timer_create.c