Changeset 8aa2b3b in mainline for uspace/srv/loader
- Timestamp:
- 2011-04-03T15:41:33Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e2098dd7
- Parents:
- 3a3d4ca (diff), b2a081ae (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. - Location:
- uspace/srv/loader
- Files:
-
- 9 edited
-
arch/abs32le/_link.ld.in (modified) (1 diff)
-
arch/amd64/_link.ld.in (modified) (1 diff)
-
arch/arm32/_link.ld.in (modified) (1 diff)
-
arch/ia32/_link.ld.in (modified) (1 diff)
-
arch/ia64/_link.ld.in (modified) (2 diffs)
-
arch/mips32/_link.ld.in (modified) (1 diff)
-
arch/ppc32/_link.ld.in (modified) (1 diff)
-
arch/sparc64/_link.ld.in (modified) (1 diff)
-
main.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/arch/abs32le/_link.ld.in
r3a3d4ca r8aa2b3b 21 21 22 22 .text : { 23 *(.text );24 *(.rodata *);23 *(.text .text.*); 24 *(.rodata .rodata.*); 25 25 } :text 26 26 -
uspace/srv/loader/arch/amd64/_link.ld.in
r3a3d4ca r8aa2b3b 27 27 28 28 .text : { 29 *(.text );30 *(.rodata *);29 *(.text .text.*); 30 *(.rodata .rodata.*); 31 31 } :text 32 32 -
uspace/srv/loader/arch/arm32/_link.ld.in
r3a3d4ca r8aa2b3b 25 25 26 26 .text : { 27 *(.text );28 *(.rodata *);27 *(.text .text.*); 28 *(.rodata .rodata.*); 29 29 } :text 30 30 -
uspace/srv/loader/arch/ia32/_link.ld.in
r3a3d4ca r8aa2b3b 26 26 27 27 .text : { 28 *(.text );29 *(.rodata *);28 *(.text .text.*); 29 *(.rodata .rodata.*); 30 30 } :text 31 31 -
uspace/srv/loader/arch/ia64/_link.ld.in
r3a3d4ca r8aa2b3b 21 21 22 22 .text : { 23 *(.text );24 *(.rodata *);23 *(.text .text.*); 24 *(.rodata .rodata.*); 25 25 } :text 26 26 … … 29 29 .got : { 30 30 _gp = .; 31 *(.got *);31 *(.got .got.*); 32 32 } :data 33 33 -
uspace/srv/loader/arch/mips32/_link.ld.in
r3a3d4ca r8aa2b3b 25 25 26 26 .text : { 27 *(.text );28 *(.rodata *);27 *(.text .text.*); 28 *(.rodata .rodata.*); 29 29 } :text 30 30 -
uspace/srv/loader/arch/ppc32/_link.ld.in
r3a3d4ca r8aa2b3b 25 25 26 26 .text : { 27 *(.text );28 *(.rodata *);27 *(.text .text.*); 28 *(.rodata .rodata.*); 29 29 } :text 30 30 -
uspace/srv/loader/arch/sparc64/_link.ld.in
r3a3d4ca r8aa2b3b 20 20 21 21 .text : { 22 *(.text );23 *(.rodata *);22 *(.text .text.*); 23 *(.rodata .rodata.*); 24 24 } :text 25 25 -
uspace/srv/loader/main.c
r3a3d4ca r8aa2b3b 415 415 /* Not reached */ 416 416 default: 417 retval = E NOENT;417 retval = EINVAL; 418 418 break; 419 419 } 420 if (IPC_GET_IMETHOD(call) != IPC_M_PHONE_HUNGUP) { 421 DPRINTF("Responding EINVAL to method %d.\n", 422 IPC_GET_IMETHOD(call)); 423 async_answer_0(callid, EINVAL); 424 } 420 421 if (IPC_GET_IMETHOD(call) != IPC_M_PHONE_HUNGUP) 422 async_answer_0(callid, retval); 425 423 } 426 424 }
Note:
See TracChangeset
for help on using the changeset viewer.
