Changeset 86e3d62 in mainline
- Timestamp:
- 2008-11-06T22:47:12Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7faabb7
- Parents:
- 9d20ea8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/main.c
r9d20ea8 r86e3d62 248 248 /* Statically linked program */ 249 249 // printf("Run statically linked program\n"); 250 // printf("entry point: 0x%l lx\n", prog_info.entry);250 // printf("entry point: 0x%lx\n", prog_info.entry); 251 251 is_dyn_linked = false; 252 252 ipc_answer_0(rid, EOK); … … 286 286 /* Dynamically linked program */ 287 287 printf("run dynamic linker\n"); 288 printf("entry point: 0x%l lx\n", interp_info.entry);288 printf("entry point: 0x%lx\n", interp_info.entry); 289 289 close_console(); 290 290 … … 320 320 321 321 switch (IPC_GET_METHOD(call)) { 322 case IPC_M_PHONE_HUNGUP: 323 exit(0); 322 324 case LOADER_GET_TASKID: 323 325 loader_get_taskid(callid, &call);
Note:
See TracChangeset
for help on using the changeset viewer.