mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-28 03:27:46 +08:00
* spu/exit.c (_exit): Finish with an infinite loop to eliminate a
warning about this noreturn function returning.
This commit is contained in:
parent
8e0e8f40fb
commit
5a308d4f2d
@ -1,3 +1,8 @@
|
|||||||
|
2007-01-09 Ben Elliston <bje@au.ibm.com>
|
||||||
|
|
||||||
|
* spu/exit.c (_exit): Finish with an infinite loop to eliminate a
|
||||||
|
warning about this noreturn function returning.
|
||||||
|
|
||||||
2007-01-04 Kazu Hirata <kazu@codesourcery.com>
|
2007-01-04 Kazu Hirata <kazu@codesourcery.com>
|
||||||
|
|
||||||
Merge from newlib-csl-20060320-branch:
|
Merge from newlib-csl-20060320-branch:
|
||||||
|
@ -42,4 +42,7 @@ void _exit(int rc)
|
|||||||
"1:\n"
|
"1:\n"
|
||||||
" stop 0x2000\n"
|
" stop 0x2000\n"
|
||||||
: : "r" (rc) );
|
: : "r" (rc) );
|
||||||
|
|
||||||
|
for (;;)
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user