better english, tell about rela relocs.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26559 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2008-07-22 01:11:45 +00:00
parent 9f8e918d80
commit 9a486099e8

View File

@ -181,7 +181,7 @@ load_elf_symbol_table(int fd, preloaded_image *image)
goto error3;
}
TRACE(("loaded debug %ld symbols\n", numSymbols));
TRACE(("loaded %ld debug symbols\n", numSymbols));
// insert tables into image
image->debug_symbols = symbolTable;
@ -470,6 +470,8 @@ elf_relocate_image(struct preloaded_image *image)
}
if (image->rela) {
TRACE(("total %i rela relocs\n",
image->rela_len / (int)sizeof(struct Elf32_Rela)));
status = boot_arch_elf_relocate_rela(image, image->rela,
image->rela_len);
if (status < B_OK)