about summary refs log tree commit diff
path: root/include/link.h
Commit message (Collapse)AuthorAgeFilesLines
* add missing c++ extern "C" wrapping to link.hRich Felker2013-08-021-0/+8
|
* link.h: expose glibc/svr4 dynlinker debugging gluerofl0r2012-12-191-0/+19
| | | | | | this is already implemented in the dynliker (see struct debug), but was not exposed. we need it to do so to make wine happy...
* add dl_iterate_phdr interfaceRich Felker2012-10-311-0/+27
patches by Alex Caudill (npx). the dynamic-linked version is almost identical to the final submitted patch; I just added a couple missing lines for saving the phdr address when the dynamic linker is invoked directly to run a program, and removed a couple to avoid introducing another unnecessary type. the static-linked version is based on npx's draft. it could use some improvements which are contingent on the startup code saving some additional information for later use.