From 2b6789581c5d1d556ba7c0e4719b4bf5d6f035bf Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 11 Jul 2005 22:28:40 +0000 Subject: create a new wrapper macro for debug early output --- ldso/include/ldso.h | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'ldso/include') diff --git a/ldso/include/ldso.h b/ldso/include/ldso.h index 869bcb675..db3fe054c 100644 --- a/ldso/include/ldso.h +++ b/ldso/include/ldso.h @@ -55,15 +55,21 @@ extern char *_dl_debug_detail; extern char *_dl_debug_nofixups; extern char *_dl_debug_bindings; extern int _dl_debug_file; +# define __dl_debug_dprint(fmt, args...) \ + _dl_dprintf(_dl_debug_file, "%s:%i: " fmt, __FUNCTION__, __LINE__, ## args); # define _dl_if_debug_dprint(fmt, args...) \ - do { \ - if (_dl_debug) \ - _dl_dprintf(_dl_debug_file, "%s():%i: " fmt, __FUNCTION__, __LINE__, ## args); \ - } while (0) + do { if (_dl_debug) __dl_debug_dprint(fmt, ## args); } while (0) #else +# define _dl_debug_dprint(fmt, args...) # define _dl_if_debug_dprint(fmt, args...) # define _dl_debug_file 2 -#endif +#endif /* __SUPPORT_LD_DEBUG__ */ + +#ifdef __SUPPORT_LD_DEBUG_EARLY__ +# define _dl_debug_early(fmt, args...) __dl_debug_dprint(fmt, ## args) +#else +# define _dl_debug_early(fmt, args...) +#endif /* __SUPPORT_LD_DEBUG_EARLY__ */ #ifndef NULL #define NULL ((void *) 0) -- cgit v1.2.3