Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3130 → Rev 3131

/branches/dynload/uspace/app/iloader/elf_load.c
54,6 → 54,7
#include "elf.h"
#include "pcb.h"
#include "elf_load.h"
#include "arch.h"
 
static char *error_codes[] = {
"no error",
120,7 → 121,8
void elf_run(elf_info_t *info)
{
printf("entry point: 0x%llx\n", info->entry);
(*info->entry)();
//(*info->entry)();
program_run(info->entry);
 
/* not reached */
}