summaryrefslogtreecommitdiff
path: root/src/env
AgeCommit message (Expand)AuthorLines
2015-03-11copy the dtv pointer to the end of the pthread struct for TLS_ABOVE_TP archsSzabolcs Nagy-1/+1
2015-03-06fix over-alignment of TLS, insufficient builtin TLS on 64-bit archsRich Felker-2/+8
2014-08-13fix #ifdef inside a macro argument list in __init_tls.cSzabolcs Nagy-4/+3
2014-07-05eliminate use of cached pid from thread structureRich Felker-1/+1
2014-07-02add locale frameworkRich Felker-0/+1
2014-07-01fix typo in a comment in __libc_start_mainRich Felker-1/+1
2014-06-19separate __tls_get_addr implementation from dynamic linker/init_tlsRich Felker-5/+0
2014-06-10simplify errno implementationRich Felker-1/+0
2014-06-10add thread-pointer support for pre-2.6 kernels on i386Rich Felker-9/+4
2014-05-29support linux kernel apis (new archs) with old syscalls removedRich Felker-0/+5
2014-05-24support kernels with no SYS_open syscall, only SYS_openatRich Felker-1/+1
2014-04-21make __init_libc static for non-shared libcRich Felker-0/+3
2014-04-21further micro-optimize startup code for sizeRich Felker-23/+14
2014-04-21micro-optimize some startup code for sizeRich Felker-7/+4
2014-04-07remove some cruft from libc/tls init codeRich Felker-3/+0
2014-04-04remove cruft left behind when lazy thread pointer init was removedRich Felker-8/+0
2014-03-25remove lazy ssp initializationTimo Teräs-15/+5
2014-03-24always initialize thread pointer at program startRich Felker-13/+50
2014-03-23reduce static linking overhead from TLS support by inlining mmap syscallRich Felker-1/+9
2013-12-12include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy-6/+2
2013-10-07remove errno setting from setenv, malloc sets it correctly on oomSzabolcs Nagy-1/+0
2013-10-04fix failure to check malloc result in setenvRich Felker-9/+9
2013-09-15support configurable page size on mips, powerpc and microblazeSzabolcs Nagy-0/+1
2013-08-03add system for resetting TLS to initial valuesRich Felker-14/+40
2013-07-21remove __libc_csu_* cruftRich Felker-10/+0
2013-07-21add support for init/fini array in main program, and greatly simplifyRich Felker-13/+13
2013-07-13fix omission of dtv setup in static linked programs on TLS variant I archsRich Felker-1/+1
2013-04-06add support for program_invocation[_short]_nameRich Felker-2/+8
2013-02-17remove unused #undef environ now that libc.h no longer #defines itRich Felker-1/+0
2012-12-25fix reference to libc struct in static tls init codeRich Felker-1/+1
2012-11-30fix ordering of shared library ctors with respect to libc initRich Felker-0/+5
2012-11-08clean up sloppy nested inclusion from pthread_impl.hRich Felker-0/+2
2012-11-01fix unused variable warningsRich Felker-2/+1
2012-10-21as an extension, have putenv("VAR") behave as unsetenv("VAR")Rich Felker-5/+5
2012-10-19fix crashes in static-linked multithreaded programs without TLSRich Felker-0/+2
2012-10-15add support for TLS variant I, presently needed for arm and mipsRich Felker-1/+8
2012-10-11i386 vsyscall support (vdso-provided sysenter/syscall instruction based)Rich Felker-0/+3
2012-10-08ensure that buffer for decoding auxv at startup is initially zeroRich Felker-1/+1
2012-10-07clean up and refactor program initializationRich Felker-31/+30
2012-10-06fix buggy TLS size/alignment computations in static-linked TLSRich Felker-5/+22
2012-10-05support for TLS in dynamic-loaded (dlopen) modulesRich Felker-2/+2
2012-10-04partial TLS support for dynamic-linked programsRich Felker-5/+5
2012-10-04TLS (GNU/C11 thread-local storage) support for static-linked programsRich Felker-0/+73
2012-08-25ensure canary is setup if stack-prot libs are dlopen'd into non-ssp appRich Felker-1/+2
2012-07-27save AT_HWCAP from auxv for subsequent use in machine-specific codeRich Felker-0/+1
2012-06-14direct syscall to open in __init_security needs O_LARGEFILERich Felker-1/+1
2012-05-10fix missing static (namespace clash)Rich Felker-1/+1
2012-05-03overhaul SSP support to use a real canaryRich Felker-8/+17
2012-04-30make stack protector work with gcc configured for non-tls canaryRich Felker-0/+2
2012-04-24first attempt at enabling stack protector supportRich Felker-0/+21