about summary refs log tree commit diff
path: root/src/ldso
Commit message (Expand)AuthorAgeFilesLines
* make dynamic linker accept : or \n as path separatorRich Felker2013-04-201-8/+8
* fix uninitialized map_len being used in munmap failure paths in load_libraryRich Felker2013-02-021-3/+2
* add support for RTLD_NOLOAD to dlopenRich Felker2013-01-231-3/+7
* fix regression in dlsym: rejection of special RTLD_* handles as invalidRich Felker2013-01-231-1/+2
* fix warning building dynlink.c stub for static libcRich Felker2013-01-161-2/+2
* fix bug in dladdr that prevented resolving addresses in the PLTRich Felker2013-01-161-1/+1
* check for invalid handles in dlsym/dlcloseRich Felker2013-01-101-1/+17
* fix breakage in ldd (failure to print library load address)Rich Felker2012-12-151-2/+2
* fix ordering of shared library ctors with respect to libc initRich Felker2012-11-301-3/+6
* eliminate gdb complaints about missing linux-gate.so.1Rich Felker2012-11-251-1/+2
* fix typo in dynamic linker path file loading codeRich Felker2012-11-171-1/+1
* arg-skipping code for powerpc dynamic linkerRich Felker2012-11-171-0/+8
* dynamic linking support for powerpcRich Felker2012-11-161-17/+16
* fix indention with spaces in powerpc asmRich Felker2012-11-142-27/+26
* Merge remote-tracking branch 'ppc-port/ppc-squashed'Rich Felker2012-11-142-0/+31
|\
| * PPC port cleaned up, static linking works well now.rofl0r2012-11-133-24/+24
| * import preliminary ppc work by rdp.Richard Pennington2012-11-132-0/+31
* | support ldso path files without final newlineRich Felker2012-11-091-2/+5
* | change ldso path file logic to replace rather than add to search pathRich Felker2012-11-081-2/+2
|/
* fix dlsym asm for mipsRich Felker2012-11-081-1/+2
* remove one unnecessary static var from dynamic linkerRich Felker2012-11-011-2/+2
* fix more unused variable warningsRich Felker2012-11-011-3/+2
* add dl_iterate_phdr interfaceRich Felker2012-10-312-7/+87
* support looking up thread-local objects with dlsymRich Felker2012-10-191-0/+6
* fix breakage in dlsym for looking up RTLD_DEFAULT, etc.Rich Felker2012-10-191-2/+5
* fix microblaze asm relocations for shared libcRich Felker2012-10-172-3/+3
* add support for TLS variant I, presently needed for arm and mipsRich Felker2012-10-151-3/+32
* fix main program TLS alignment for dynamic-linked programsRich Felker2012-10-141-6/+5
* fix namespace clash (libc) in dynlink.cRich Felker2012-10-131-14/+13
* remove dead code from dynamic linkerRich Felker2012-10-131-10/+0
* clean up and refactor program initializationRich Felker2012-10-071-2/+2
* fix breakage due to initializing thread pointer when loading libsRich Felker2012-10-071-1/+1
* make new TLS setup block even implementation-internals signalsRich Felker2012-10-061-2/+1
* 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