about summary refs log tree commit diff
path: root/src/ldso
Commit message (Expand)AuthorAgeFilesLines
...
* don't crash if TLS library is loaded into process with no thread pointerRich Felker2012-10-061-0/+5
* fix symbol acceptance/rejection rules for TLSRich Felker2012-10-061-8/+14
* TLS fixes, mainly alignment handlingRich Felker2012-10-061-39/+48
* fix/improve shared library ctor/dtor handling, allow recursive dlopenRich Felker2012-10-051-7/+29
* small dynamic linker module search fixRich Felker2012-10-051-1/+2
* support for TLS in dynamic-loaded (dlopen) modulesRich Felker2012-10-051-19/+81
* fix race condition in dlopenRich Felker2012-10-051-1/+3
* dynamic-linked TLS support for everything but dlopen'd libsRich Felker2012-10-041-38/+58
* remove freeing of dynamic linker data when dlopen/dlsym are not usedRich Felker2012-10-041-11/+0
* beginnings of full TLS support in shared librariesRich Felker2012-10-041-0/+10
* partial TLS support for dynamic-linked programsRich Felker2012-10-041-22/+72
* TLS (GNU/C11 thread-local storage) support for static-linked programsRich Felker2012-10-041-0/+10
* more close-on-exec fixes, mostly using new "e" flag to fopenRich Felker2012-09-291-1/+1
* fix some more O_CLOEXEC/SOCK_CLOEXEC issuesRich Felker2012-09-291-2/+2
* microblaze portRich Felker2012-09-292-0/+32
* use restrict everywhere it's required by c99 and/or posix 2008Rich Felker2012-09-062-4/+4
* fix bug caused by main app & libc having map set; cannot free themRich Felker2012-08-271-1/+1
* dladdr support for dynamic linker (nonstandard extension)Rich Felker2012-08-262-0/+95
* fix bug in gnu hash lookup on dlsym(handle, name) lookupsRich Felker2012-08-251-1/+1
* clean up search_vec usage for vdsoRich Felker2012-08-251-2/+2
* use new search_vec function to find vdso in dynamic linkerRich Felker2012-08-251-4/+2
* ensure canary is setup if stack-prot libs are dlopen'd into non-ssp appRich Felker2012-08-251-1/+4
* add gnu hash support in the dynamic linkerRich Felker2012-08-251-12/+85
* make dynamic linker report all failures before exitingRich Felker2012-08-181-2/+6
* fix bug computing argc when invoking ld-musl-mips.so.1 progname ...Rich Felker2012-08-171-3/+3
* fix bug dlsym bug that slipped in during dynamic linker cleanupRich Felker2012-08-071-1/+1
* dlsym RTLD_NEXT support for mipsRich Felker2012-08-051-0/+15
* more changes that were lost when committing mips dynamic linkerRich Felker2012-08-051-0/+4
* fix change lost in the process of integrating mips dynamic linkerRich Felker2012-08-051-2/+2
* mips dynamic linker supportRich Felker2012-08-052-0/+49
* more cleanup of dynamic linker internalsRich Felker2012-08-051-8/+9
* more dynamic linker internals cleanupRich Felker2012-08-051-6/+6
* dynamic linker internals cleanupRich Felker2012-08-051-5/+7
* make dynamic linker tell the debugger its own pathnameRich Felker2012-07-131-0/+5
* make dynamic linker depend on -DSHARED not -fPICRich Felker2012-07-111-1/+1
* fix lots of breakage on dlopen, mostly with explicit pathnamesRich Felker2012-07-111-14/+21
* fix dlsym RTLD_NEXT supportRich Felker2012-07-071-1/+3
* fix char signedness bug (arm-specific) in dynamic linkerRich Felker2012-06-091-1/+1
* treat failure of mprotect in map_library as a fatal load failureRich Felker2012-06-061-9/+9
* add ldd and main program loading support to dynamic linkerRich Felker2012-05-274-21/+89
* cleanup dynamic linker start code cruftRich Felker2012-05-273-13/+6
* fix error reporting for dlsym with global symbolsRich Felker2012-05-041-1/+2
* overhaul SSP support to use a real canaryRich Felker2012-05-031-4/+3
* gdb shared library debugging supportRich Felker2012-04-251-5/+32
* first attempt at enabling stack protector supportRich Felker2012-04-241-0/+7
* make dlerror produce informative resultsRich Felker2012-04-231-4/+15
* make dlerror conform to posixRich Felker2012-03-231-6/+16
* protect against cancellation in dlopenRich Felker2012-02-071-2/+5
* reduce some wasted space in dso structureRich Felker2012-02-071-3/+3
* run ctors/dtors for shared objects loaded with dlopenRich Felker2012-02-061-0/+1