Changeset 628d548 in mainline
- Timestamp:
- 2011-04-18T19:27:55Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b678410
- Parents:
- b8ef4900
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/rtld/dynamic.c
rb8ef4900 r628d548 53 53 54 54 DPRINTF("memset\n"); 55 memset(info, 0, sizeof( info));55 memset(info, 0, sizeof(dyn_info_t)); 56 56 57 57 soname_idx = 0; … … 62 62 d_ptr = (void *)((uint8_t *)dp->d_un.d_ptr + bias); 63 63 d_val = dp->d_un.d_val; 64 DPRINTF("tag=%u ptr=0x%x val=%u\n", (unsigned)dp->d_tag, 65 (unsigned)d_ptr, (unsigned)d_val); 64 66 65 67 switch (dp->d_tag) { … … 108 110 DPRINTF("rpath='%s'\n", info->rpath); 109 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); 110 116 111 117 /*
Note:
See TracChangeset
for help on using the changeset viewer.