4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-22 00:38:06 +08:00

2006-08-29 Paul Brook <paul@codesourcery.com>

newlib/
	* libc/sys/arm/_fault_isr.c (_fault_isr): Compile unconditionally.
	* libc/sys/arm/_nmi_isr.c (_nmi_isr): Ditto.
This commit is contained in:
Paul Brook 2006-08-29 22:05:40 +00:00
parent 975f7bea95
commit 83cc5b75d9
3 changed files with 8 additions and 10 deletions

View File

@ -1,3 +1,9 @@
2006-08-29 Paul Brook <paul@codesourcery.com>
newlib/
* libc/sys/arm/_fault_isr.c (_fault_isr): Compile unconditionally.
* libc/sys/arm/_nmi_isr.c (_nmi_isr): Ditto.
2006-08-29 Paul Brook <paul@codesourcery.com>
newlib/

View File

@ -1,16 +1,12 @@
#include "newlib.h"
#ifdef _ARM_V7M
/* Called when a hardware fault occurs. Users can replace this
function. */
void
void
_fault_isr()
{
/* Sit an endless loop so that the user can analyze the situation
from the debugger. */
while (1);
}
#endif

View File

@ -1,16 +1,12 @@
#include "newlib.h"
#ifdef _ARM_V7M
/* Called when a non-maskable interrupt occurs. Users can replace this
function. */
void
void
_nmi_isr()
{
/* Sit an endless loop so that the user can analyze the situation
from the debugger. */
while (1);
}
#endif