* m68k/fido-_exit.c (_exit): Use stop #0x700.

This commit is contained in:
Kazu Hirata 2007-05-03 01:19:45 +00:00
parent c7e9b095ac
commit a562045661
2 changed files with 7 additions and 4 deletions

View File

@ -1,8 +1,11 @@
2007-05-03 Kazu Hirata <kazu@codesourcery.com>
* m68k/fido-_exit.c (_exit): Use stop #0x700.
2007-04-27 Kazu Hirata <kazu@codesourcery.com> 2007-04-27 Kazu Hirata <kazu@codesourcery.com>
* libgloss/m68k/fido.sc: Catch .text.*, .rodata.*, .data.*, * m68k/fido.sc: Catch .text.*, .rodata.*, .data.*, .bss.*,
.bss.*, .ctor.*, and .dtor.*. Wrap ctor/dtor-related sections .ctor.*, and .dtor.*. Wrap ctor/dtor-related sections with KEEP.
with KEEP.
2007-04-04 Patrick Mansfield <patmans@us.ibm.com> 2007-04-04 Patrick Mansfield <patmans@us.ibm.com>

View File

@ -19,5 +19,5 @@ void
_exit (int code) _exit (int code)
{ {
while (1) while (1)
asm volatile ("stop #0"); asm volatile ("stop #0x700");
} }