summaryrefslogtreecommitdiffstats
path: root/libexec/ld.so/dl_printf.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* rename *fdprint function to *dprintf, like libc versionderaadt2017-08-291-2/+2
|
* make ldso[] const; OK guenther@millert2017-01-241-2/+2
|
* On fatal errors, kill ourselves with thrkill(0,9,NULL) instead ofguenther2017-01-241-3/+32
| | | | | | | | simply exiting, via helper functions _dl_die(), _dl_diedie(), and _dl_oom(). prompted by a complaint from jsing@ ok jsing@ deraadt@
* Mark a bunch of stuff staticguenther2017-01-231-2/+2
| | | | ok kettenis@
* Remove excessive sys/cdefs.h inclusionderaadt2012-12-051-2/+1
| | | | ok guenther millert kettenis
* the abstraction of using a function pointer for the print functions isderaadt2010-01-021-27/+27
| | | | | | not needed (and secondly, ran into hppa not relocating function pointers correctly) ok kettenis drahn
* Do not have multiple va_end(). Ok miod@ + many more.ragge2009-08-161-2/+1
|
* Add buffer mechanism internal ld.so printing code. makes ktrace more readable.drahn2009-05-181-2/+28
| | | | nudge nudge deraadt@
* various proto, ansi, and knf repair. tested on all architectures thatderaadt2003-07-061-1/+2
| | | | use it. (build may require make cleandir because of .depend balony)
* Remove the advertising clause in the UCB license which Berkeleymillert2003-06-021-6/+2
| | | | rescinded 22 July 1999. Proofed by myself and Theo.
* knf & ansi; drahn okderaadt2003-02-021-2/+2
|
* Print full 64 bit address. At least until LD_TRACE_LOADED_OBJECTS_FMT[12]drahn2002-10-041-2/+6
| | | | is supported properly.
* Add the ability to output to file descriptors besides stderr.drahn2002-08-311-29/+39
| | | | This allows ldd outptut go to stdout like it should. ok deraadt@
* more KNFderaadt2002-05-281-8/+9
|
* remove another unneeded functionderaadt2002-05-241-10/+2
|
* remove _dl_sprintf(). nothing uses it. and if it is gone, nothing canderaadt2002-05-231-13/+1
|
* We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft.millert2002-02-191-5/+1
|
* Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)millert2002-02-171-3/+3
|
* 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-3/+3
|
* cleaningart2001-06-061-32/+7
|
* Initial import of ELF ld.so. This was written indepently of the gnu rtldrahnds2000-06-131-0/+253
code and is fully BSD copyrighted. This initial import contains a mostly working mips and partially working powerpc version. No support for ld.so.hints or system run path exists.