Changes in uspace/srv/loader/elf_load.c [08c9f7d5:a000878c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/elf_load.c
r08c9f7d5 ra000878c 60 60 #define DPRINTF(...) 61 61 62 static c har *error_codes[] = {62 static const char *error_codes[] = { 63 63 "no error", 64 64 "invalid image", … … 95 95 * pointed to by @a info. 96 96 * 97 * @param file_name 98 * @param so_bias 99 * @param info 100 * 97 * @param file_name Path to the ELF file. 98 * @param so_bias Bias to use if the file is a shared object. 99 * @param info Pointer to a structure for storing information 100 * extracted from the binary. 101 101 * 102 102 * @return EOK on success or negative error code. 103 */ 104 int elf_load_file(char *file_name, size_t so_bias, elf_info_t *info) 103 * 104 */ 105 int elf_load_file(const char *file_name, size_t so_bias, elf_info_t *info) 105 106 { 106 107 elf_ld_t elf; … … 130 131 * earlier with elf_load_file(). This function does not return. 131 132 * 132 * @param info Info structure filled earlier by elf_load_file() 133 * @param info Info structure filled earlier by elf_load_file() 134 * 133 135 */ 134 136 void elf_run(elf_info_t *info, pcb_t *pcb) … … 280 282 * @return NULL terminated description of error. 281 283 */ 282 c har *elf_error(unsigned int rc)284 const char *elf_error(unsigned int rc) 283 285 { 284 286 assert(rc < sizeof(error_codes) / sizeof(char *)); … … 342 344 seg_ptr = (void *) seg_addr; 343 345 344 DPRINTF("Load segment at addr 0x%x, size 0x%x\n", seg_addr,345 entry->p_memsz); 346 DPRINTF("Load segment at addr %p, size 0x%x\n", seg_addr, 347 entry->p_memsz); 346 348 347 349 if (entry->p_align > 1) { … … 370 372 mem_sz = entry->p_memsz + (entry->p_vaddr - base); 371 373 372 DPRINTF("Map to seg_addr= 0x%x-0x%x.\n", seg_addr,374 DPRINTF("Map to seg_addr=%p-%p.\n", seg_addr, 373 375 entry->p_vaddr + bias + ALIGN_UP(entry->p_memsz, PAGE_SIZE)); 374 376 … … 384 386 } 385 387 386 DPRINTF("as_area_create( 0x%lx, 0x%x, %d) -> 0x%lx\n",388 DPRINTF("as_area_create(%p, 0x%x, %d) -> 0x%lx\n", 387 389 base + bias, mem_sz, flags, (uintptr_t)a); 388 390 … … 461 463 elf->info->dynamic = 462 464 (void *)((uint8_t *)entry->sh_addr + elf->bias); 463 DPRINTF("Dynamic section found at 0x%x.\n",465 DPRINTF("Dynamic section found at %p.\n", 464 466 (uintptr_t)elf->info->dynamic); 465 467 break;
Note:
See TracChangeset
for help on using the changeset viewer.