Changeset f798178 in mainline for uspace/srv/loader/main.c
- Timestamp:
- 2011-04-30T13:44:28Z (14 years ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/main.c
ra71d2630 rf798178 55 55 #include <macros.h> 56 56 #include <loader/pcb.h> 57 #include <entry_point.h> 57 58 #include <errno.h> 58 59 #include <async.h> … … 71 72 #define DPRINTF(...) 72 73 73 void program_run(void *entry, pcb_t *pcb);74 74 static int ldr_load_dyn_linked(elf_info_t *p_info); 75 75 … … 394 394 async_answer_0(rid, EOK); 395 395 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); 397 397 398 398 /* Not reached */
Note:
See TracChangeset
for help on using the changeset viewer.