From 2a33a944e5b29a2b839ab8655e2d45986be62396 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Tue, 3 Jun 2008 15:05:16 +0000 Subject: [PATCH] Don't spam to the standard output when not finding a symbol. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25784 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/runtime_loader/elf.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/system/runtime_loader/elf.cpp b/src/system/runtime_loader/elf.cpp index 85ef13d93e..8ae8d377a9 100644 --- a/src/system/runtime_loader/elf.cpp +++ b/src/system/runtime_loader/elf.cpp @@ -1078,20 +1078,23 @@ resolve_symbol(image_t *rootImage, image_t *image, struct Elf32_Sym *sym, // it's undefined, must be outside this image, try the other images sym2 = find_undefined_symbol(rootImage, image, symname, &shimg); if (!sym2) { - printf("elf_resolve_symbol: could not resolve symbol '%s'\n", symname); + FATAL("elf_resolve_symbol: could not resolve symbol '%s'\n", + symname); return B_MISSING_SYMBOL; } // make sure they're the same type if (ELF32_ST_TYPE(sym->st_info) != STT_NOTYPE && ELF32_ST_TYPE(sym->st_info) != ELF32_ST_TYPE(sym2->st_info)) { - printf("elf_resolve_symbol: found symbol '%s' in shared image but wrong type\n", symname); + FATAL("elf_resolve_symbol: found symbol '%s' in shared image " + "but wrong type\n", symname); return B_MISSING_SYMBOL; } if (ELF32_ST_BIND(sym2->st_info) != STB_GLOBAL && ELF32_ST_BIND(sym2->st_info) != STB_WEAK) { - printf("elf_resolve_symbol: found symbol '%s' but not exported\n", symname); + FATAL("elf_resolve_symbol: found symbol '%s' but not " + "exported\n", symname); return B_MISSING_SYMBOL; } @@ -1104,7 +1107,7 @@ resolve_symbol(image_t *rootImage, image_t *image, struct Elf32_Sym *sym, case SHN_COMMON: // ToDo: finish this - printf("elf_resolve_symbol: COMMON symbol, finish me!\n"); + FATAL("elf_resolve_symbol: COMMON symbol, finish me!\n"); return B_ERROR; //ERR_NOT_IMPLEMENTED_YET; default: