Just cleanups, commented out unused code.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2435 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2003-01-12 16:54:38 +00:00
parent 2a2cf1b8f5
commit 077020137d
+17 -21
View File
@@ -4,8 +4,8 @@
** Distributed under the terms of the NewOS License.
*/
static
int
static int
relocate_rel(image_t *image, struct Elf32_Rel *rel, int rel_len)
{
int i;
@@ -84,48 +84,44 @@ relocate_rel(image_t *image, struct Elf32_Rel *rel, int rel_len )
# undef A
# undef B
return B_NO_ERROR;
}
/*
* rldelf.c requires this function to be implemented on a per-cpu basis
*/
static
bool
static bool
relocate_image(image_t *image)
{
int res = B_NO_ERROR;
int i;
status_t status = B_NO_ERROR;
if(image->flags & RFLAG_RELOCATED) {
if (image->flags & RFLAG_RELOCATED)
return true;
}
image->flags |= RFLAG_RELOCATED;
// deal with the rels first
if (image->rel) {
res= relocate_rel( image, image->rel, image->rel_len );
if(res) {
status = relocate_rel(image, image->rel, image->rel_len);
if (status)
return false;
}
}
if (image->pltrel) {
res= relocate_rel(image, image->pltrel, image->pltrel_len);
if(res) {
status = relocate_rel(image, image->pltrel, image->pltrel_len);
if (status)
return false;
}
}
if (image->rela) {
//int i;
printf("RELA relocations not supported\n");
return ERR_NOT_ALLOWED;
for(i = 1; i * (int)sizeof(struct Elf32_Rela) < image->rela_len; i++) {
printf("rela: type %d\n", ELF32_R_TYPE(image->rela[i].r_info));
}
return false;
//for (i = 1; i * (int)sizeof(struct Elf32_Rela) < image->rela_len; i++) {
// printf("rela: type %d\n", ELF32_R_TYPE(image->rela[i].r_info));
//}
}
return true;