Changeset f798178 in mainline for uspace/srv/loader/main.c


Ignore:
Timestamp:
2011-04-30T13:44:28Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4ddbea7
Parents:
a71d2630 (diff), 3f461ecf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/loader/main.c

    ra71d2630 rf798178  
    5555#include <macros.h>
    5656#include <loader/pcb.h>
     57#include <entry_point.h>
    5758#include <errno.h>
    5859#include <async.h>
     
    7172#define DPRINTF(...)
    7273
    73 void program_run(void *entry, pcb_t *pcb);
    7474static int ldr_load_dyn_linked(elf_info_t *p_info);
    7575
     
    394394        async_answer_0(rid, EOK);
    395395        DPRINTF("Jump to entry point at %p\n", pcb.entry);
    396         program_run(prog_info.entry, &pcb);
     396        entry_point_jmp(prog_info.entry, &pcb);
    397397       
    398398        /* Not reached */
Note: See TracChangeset for help on using the changeset viewer.