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:
parent
975f7bea95
commit
83cc5b75d9
@ -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/
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user