Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4371 → Rev 4372

/branches/dynload/uspace/lib/libc/rtld/include/rtld.h
55,7 → 55,6
module_t rtld;
 
module_t *program;
module_t *libc;
 
/** List of all loaded modules including rtld and the program */
link_t modules_head;
/branches/dynload/uspace/lib/libc/rtld/symbol.c
171,8 → 171,6
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/arch/ia32/src/reloc.c
106,7 → 106,8
sym_addr = symbol_get_addr(sym_def, dest);
// DPRINTF("symbol definition found, addr=0x%x\n", sym_addr);
} else {
DPRINTF("symbol definition not found\n");
printf("Definition of '%s' not found.\n",
str_tab + sym->st_name);
continue;
}
}