Changeset a35b458 in mainline for uspace/lib/c/arch/ia32/src/rtld/reloc.c
- Timestamp:
- 2018-03-02T20:10:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/ia32/src/rtld/reloc.c
r3061bc1 ra35b458 65 65 elf_word sym_idx; 66 66 uint32_t sym_addr; 67 67 68 68 elf_symbol_t *sym_table; 69 69 elf_symbol_t *sym; … … 71 71 uint32_t sym_size; 72 72 char *str_tab; 73 73 74 74 elf_symbol_t *sym_def; 75 75 module_t *dest; … … 82 82 83 83 DPRINTF("address: 0x%" PRIxPTR ", entries: %zd\n", (uintptr_t)rt, rt_entries); 84 84 85 85 for (i = 0; i < rt_entries; ++i) { 86 86 // DPRINTF("symbol %d: ", i); … … 173 173 memcpy(r_ptr, (const void *)sym_addr, sym_size); 174 174 break; 175 175 176 176 case R_386_RELATIVE: 177 177 DPRINTF("fixup R_386_RELATIVE (b+a)\n");
Note:
See TracChangeset
for help on using the changeset viewer.