summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-11 22:31:34 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-11 22:31:34 +0000
commite55e48a9f6d2a77c501315dde907b1d14eeabc60 (patch)
treef96ccbff04bf8e4eb430aa0867140018ce7eaaaa /ldso
parent8174ddee1c42b33bce02ab5846fdcaf205d916d7 (diff)
use the debug dprint macros to clean up readability
Diffstat (limited to 'ldso')
-rw-r--r--ldso/ldso/dl-elf.c21
1 files changed, 6 insertions, 15 deletions
diff --git a/ldso/ldso/dl-elf.c b/ldso/ldso/dl-elf.c
index 2bb6ae575..15ba3b947 100644
--- a/ldso/ldso/dl-elf.c
+++ b/ldso/ldso/dl-elf.c
@@ -384,9 +384,7 @@ goof:
_dl_error_number = _dl_internal_error_number;
else
_dl_error_number = LD_ERROR_NOFILE;
-#if defined (__SUPPORT_LD_DEBUG__)
- if(_dl_debug) _dl_dprintf(2, "Bummer: could not find '%s'!\n", libname);
-#endif
+ _dl_if_debug_dprint("Bummer: could not find '%s'!\n", libname);
return NULL;
}
@@ -427,9 +425,7 @@ struct elf_resolve *_dl_load_elf_shared_library(int secure,
}
tpnt->usage_count++;
tpnt->libtype = elf_lib;
-#if defined (__SUPPORT_LD_DEBUG__)
- if(_dl_debug) _dl_dprintf(2, "file='%s'; already loaded\n", libname);
-#endif
+ _dl_if_debug_dprint("file='%s'; already loaded\n", libname);
return tpnt;
}
@@ -699,16 +695,11 @@ struct elf_resolve *_dl_load_elf_shared_library(int secure,
INIT_GOT(lpnt, tpnt);
};
-#if defined (__SUPPORT_LD_DEBUG__)
- if(_dl_debug) {
- _dl_dprintf(2, "\n\tfile='%s'; generating link map\n", libname);
- _dl_dprintf(2, "\t\tdynamic: %x base: %x\n",
- dynamic_addr, libaddr);
- _dl_dprintf(2, "\t\t entry: %x phdr: %x phnum: %x\n\n",
- epnt->e_entry + libaddr, tpnt->ppnt, tpnt->n_phent);
+ _dl_if_debug_dprint("\n\tfile='%s'; generating link map\n", libname);
+ _dl_if_debug_dprint("\t\tdynamic: %x base: %x\n", dynamic_addr, libaddr);
+ _dl_if_debug_dprint("\t\t entry: %x phdr: %x phnum: %x\n\n",
+ epnt->e_entry + libaddr, tpnt->ppnt, tpnt->n_phent);
- }
-#endif
_dl_munmap(header, _dl_pagesize);
return tpnt;