summaryrefslogtreecommitdiffstats
path: root/lib/csu/crtbeginS.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* boring protosderaadt2003-06-261-5/+5
|
* Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.millert2002-02-161-5/+5
|
* Commonize csu code for elf systems, powerpc now no longer has it's owndrahn2001-05-281-0/+103
versions of these files. Fixed a bug in ld.so in this, instead of scheduling the fini of each of the shared libraries with atexit. schedule a function of ld.so itself and it will walk all of the open libraries when the program exits. otherwise a shared library could be dl_open()ed and then dl_close()d and then it would not be mapped for the atexit processing. TODO: What if atexit is not found (process did not link against libc?) Do shared libraries that are dl_closed have their global destructors run?