Changes in uspace/lib/c/generic/rtld/dynamic.c [33f86a3:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/rtld/dynamic.c
r33f86a3 r9d58539 36 36 37 37 #include <stdio.h> 38 #include <inttypes.h>39 38 40 39 #include <rtld/elf_dyn.h> … … 106 105 info->dynamic = dyn_ptr; 107 106 108 DPRINTF("str_tab=0x% " PRIxPTR ", soname_idx=0x%x, soname=0x%" PRIxPTR "\n",107 DPRINTF("str_tab=0x%x, soname_idx=0x%x, soname=0x%x\n", 109 108 (uintptr_t)info->soname, soname_idx, (uintptr_t)info->soname); 110 109 DPRINTF("soname='%s'\n", info->soname); 111 110 DPRINTF("rpath='%s'\n", info->rpath); 112 DPRINTF("hash=0x% " PRIxPTR "\n", (uintptr_t)info->hash);113 DPRINTF("dt_rela=0x% " PRIxPTR "\n", (uintptr_t)info->rela);114 DPRINTF("dt_rela_sz=0x% " PRIxPTR "\n", (uintptr_t)info->rela_sz);115 DPRINTF("dt_rel=0x% " PRIxPTR "\n", (uintptr_t)info->rel);116 DPRINTF("dt_rel_sz=0x% " PRIxPTR "\n", (uintptr_t)info->rel_sz);111 DPRINTF("hash=0x%x\n", (uintptr_t)info->hash); 112 DPRINTF("dt_rela=0x%x\n", (uintptr_t)info->rela); 113 DPRINTF("dt_rela_sz=0x%x\n", (uintptr_t)info->rela_sz); 114 DPRINTF("dt_rel=0x%x\n", (uintptr_t)info->rel); 115 DPRINTF("dt_rel_sz=0x%x\n", (uintptr_t)info->rel_sz); 117 116 118 117 /*
Note:
See TracChangeset
for help on using the changeset viewer.