Subversion Repositories HelenOS

Rev

Rev 3101 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3101 Rev 3129
Line 117... Line 117...
117
 *
117
 *
118
 * @param info  Info structure filled earlier by elf_load_file()
118
 * @param info  Info structure filled earlier by elf_load_file()
119
 */
119
 */
120
void elf_run(elf_info_t *info)
120
void elf_run(elf_info_t *info)
121
{
121
{
-
 
122
    printf("entry point: 0x%llx\n", info->entry);
122
    (*info->entry)();
123
    (*info->entry)();
123
 
124
 
124
    /* not reached */
125
    /* not reached */
125
}
126
}
126
 
127