OpenBSD CVS

CVS log for src/libexec/ld.so/dl_printf.c


[BACK] Up to [local] / src / libexec / ld.so

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.23 / (download) - annotate - [select for diffs], Mon Jan 22 02:08:31 2024 UTC (4 months, 1 week ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, HEAD
Changes since 1.22: +2 -2 lines
Diff to previous 1.22 (colored)

ugly whitespaces

Revision 1.22 / (download) - annotate - [select for diffs], Sat Jan 8 06:49:41 2022 UTC (2 years, 4 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored)

Prep .c files for removing the #includes from */archdep.h
 * replace #include "archdep.h" with #includes of what is used, pulling in
   "syscall.h", "util.h", and "archdep.h" as needed
 * delete #include <sys/syscall.h> from syscall.h
 * only pull in <sys/stat.h> to the three files that use _dl_fstat(),
   forward declare struct stat in syscall.h for the others
 * NBBY is for <sys/select.h> macros; just use '8' in dl_printf.c
 * <machine/vmparam.h> is only needed on i386; conditionalize it
 * stop using __LDPGSZ: use _MAX_PAGE_SHIFT (already used by malloc.c)
   where necessary
 * delete other bogus #includes, order legit per style: <sys/*> then
   <*/*>, then <*>, then "*"

dir.c improvement from jsg@
ok and testing assistance deraadt@

Revision 1.21 / (download) - annotate - [select for diffs], Tue Aug 29 15:25:51 2017 UTC (6 years, 9 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

rename *fdprint function to *dprintf, like libc version

Revision 1.20 / (download) - annotate - [select for diffs], Tue Jan 24 23:37:10 2017 UTC (7 years, 4 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored)

make ldso[] const; OK guenther@

Revision 1.19 / (download) - annotate - [select for diffs], Tue Jan 24 07:48:36 2017 UTC (7 years, 4 months ago) by guenther
Branch: MAIN
Changes since 1.18: +32 -3 lines
Diff to previous 1.18 (colored)

On fatal errors, kill ourselves with thrkill(0,9,NULL) instead of
simply exiting, via helper functions _dl_die(), _dl_diedie(), and
_dl_oom().

prompted by a complaint from jsing@
ok jsing@ deraadt@

Revision 1.18 / (download) - annotate - [select for diffs], Mon Jan 23 13:00:09 2017 UTC (7 years, 4 months ago) by guenther
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored)

Mark a bunch of stuff static

ok kettenis@

Revision 1.17 / (download) - annotate - [select for diffs], Wed Dec 5 23:20:06 2012 UTC (11 years, 5 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9, OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7, OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3
Changes since 1.16: +1 -2 lines
Diff to previous 1.16 (colored)

Remove excessive sys/cdefs.h inclusion
ok guenther millert kettenis

Revision 1.16 / (download) - annotate - [select for diffs], Sat Jan 2 00:59:01 2010 UTC (14 years, 5 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.15: +27 -27 lines
Diff to previous 1.15 (colored)

the abstraction of using a function pointer for the print functions is
not needed (and secondly, ran into hppa not relocating function pointers
correctly)
ok kettenis drahn

Revision 1.15 / (download) - annotate - [select for diffs], Sun Aug 16 07:26:36 2009 UTC (14 years, 9 months ago) by ragge
Branch: MAIN
Changes since 1.14: +1 -2 lines
Diff to previous 1.14 (colored)

Do not have multiple va_end().  Ok miod@ + many more.

Revision 1.14 / (download) - annotate - [select for diffs], Mon May 18 20:27:19 2009 UTC (15 years ago) by drahn
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6
Changes since 1.13: +28 -2 lines
Diff to previous 1.13 (colored)

Add buffer mechanism internal ld.so printing code. makes ktrace more readable.
nudge nudge deraadt@

Revision 1.13 / (download) - annotate - [select for diffs], Sun Jul 6 20:03:57 2003 UTC (20 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0, OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5, OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.12: +2 -1 lines
Diff to previous 1.12 (colored)

various proto, ansi, and knf repair.  tested on all architectures that
use it. (build may require make cleandir because of .depend balony)

Revision 1.12 / (download) - annotate - [select for diffs], Mon Jun 2 19:38:24 2003 UTC (21 years ago) by millert
Branch: MAIN
Changes since 1.11: +2 -6 lines
Diff to previous 1.11 (colored)

Remove the advertising clause in the UCB license which Berkeley
rescinded 22 July 1999.  Proofed by myself and Theo.

Revision 1.11 / (download) - annotate - [select for diffs], Sun Feb 2 16:57:58 2003 UTC (21 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

knf & ansi; drahn ok

Revision 1.10 / (download) - annotate - [select for diffs], Fri Oct 4 03:01:42 2002 UTC (21 years, 8 months ago) by drahn
Branch: MAIN
Changes since 1.9: +6 -2 lines
Diff to previous 1.9 (colored)

Print full 64 bit address. At least until LD_TRACE_LOADED_OBJECTS_FMT[12]
is supported properly.

Revision 1.9 / (download) - annotate - [select for diffs], Sat Aug 31 04:58:25 2002 UTC (21 years, 9 months ago) by drahn
Branch: MAIN
CVS Tags: OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.8: +39 -29 lines
Diff to previous 1.8 (colored)

Add the ability to output to file descriptors besides stderr.
This allows ldd outptut go to stdout like it should. ok deraadt@

Revision 1.8 / (download) - annotate - [select for diffs], Tue May 28 00:22:01 2002 UTC (22 years ago) by deraadt
Branch: MAIN
Changes since 1.7: +9 -8 lines
Diff to previous 1.7 (colored)

more KNF

Revision 1.7 / (download) - annotate - [select for diffs], Fri May 24 01:53:58 2002 UTC (22 years ago) by deraadt
Branch: MAIN
Changes since 1.6: +2 -10 lines
Diff to previous 1.6 (colored)

remove another unneeded function

Revision 1.6 / (download) - annotate - [select for diffs], Thu May 23 22:13:46 2002 UTC (22 years ago) by deraadt
Branch: MAIN
Changes since 1.5: +1 -13 lines
Diff to previous 1.5 (colored)

remove _dl_sprintf().  nothing uses it.  and if it is gone, nothing can

Revision 1.5 / (download) - annotate - [select for diffs], Tue Feb 19 19:39:38 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.4: +1 -5 lines
Diff to previous 1.4 (colored)

We live in an ANSI C world.  Remove lots of gratuitous #ifdef __STDC__ cruft.

Revision 1.4 / (download) - annotate - [select for diffs], Sun Feb 17 19:42:26 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
Changes since 1.3: +3 -3 lines
Diff to previous 1.3 (colored)

Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)

Revision 1.3 / (download) - annotate - [select for diffs], Sat Feb 16 21:27:30 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
Changes since 1.2: +3 -3 lines
Diff to previous 1.2 (colored)

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.

Revision 1.2 / (download) - annotate - [select for diffs], Wed Jun 6 12:38:44 2001 UTC (23 years ago) by art
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0
Changes since 1.1: +7 -32 lines
Diff to previous 1.1 (colored)

cleaning

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Tue Jun 13 03:33:55 2000 UTC (23 years, 11 months ago) by rahnds
Branch: per, dsr
CVS Tags: r20000612, r19990103, OPENBSD_2_9_BASE, OPENBSD_2_9, OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

Initial import of ELF ld.so. This was written indepently of the gnu rtld
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.


Revision 1.1 / (download) - annotate - [select for diffs], Tue Jun 13 03:33:55 2000 UTC (23 years, 11 months ago) by rahnds
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.