Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4372 → Rev 4371

/branches/dynload/uspace/lib/libc/rtld/arch/ia32/src/reloc.c
106,8 → 106,7
sym_addr = symbol_get_addr(sym_def, dest);
// DPRINTF("symbol definition found, addr=0x%x\n", sym_addr);
} else {
printf("Definition of '%s' not found.\n",
str_tab + sym->st_name);
DPRINTF("symbol definition not found\n");
continue;
}
}
/branches/dynload/uspace/lib/libc/rtld/symbol.c
171,6 → 171,8
list_remove(queue_head.next);
 
if (!sym) {
printf("Error, symbol '%s' not found anywhere\n", name);
exit(1);
return NULL; /* Not found */
}
 
/branches/dynload/uspace/lib/libc/rtld/include/rtld.h
55,6 → 55,7
module_t rtld;
 
module_t *program;
module_t *libc;
 
/** List of all loaded modules including rtld and the program */
link_t modules_head;