summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-06 14:03:41 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-26 07:54:25 +0200
commit4969af41028ff7861753efe451826c2c42fc45b2 (patch)
tree5a8b0187b4d4a77ae59830b8114adb1376aadb7b /cpukit/sapi
parentrtems: Add rtems_interrupt_is_pending() (diff)
downloadrtems-4969af41028ff7861753efe451826c2c42fc45b2.tar.bz2
rtems: Add RTEMS_FATAL_SOURCE_SPURIOUS_INTERRUPT
Add RTEMS_FATAL_SOURCE_SPURIOUS_INTERRUPT as the fatal source for spurious interrupts. Use the interrupt vector number of the spurious interrupt for the fatal code. Update #3269.
Diffstat (limited to 'cpukit/sapi')
-rw-r--r--cpukit/sapi/src/fatalsrctext.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/sapi/src/fatalsrctext.c b/cpukit/sapi/src/fatalsrctext.c
index 6510725e13..636878da4c 100644
--- a/cpukit/sapi/src/fatalsrctext.c
+++ b/cpukit/sapi/src/fatalsrctext.c
@@ -41,7 +41,8 @@ static const char *const fatal_source_text[] = {
"RTEMS_FATAL_SOURCE_SMP",
"RTEMS_FATAL_SOURCE_PANIC",
"RTEMS_FATAL_SOURCE_INVALID_HEAP_FREE",
- "RTEMS_FATAL_SOURCE_HEAP"
+ "RTEMS_FATAL_SOURCE_HEAP",
+ "RTEMS_FATAL_SOURCE_SPURIOUS_INTERRUPT"
};
const char *rtems_fatal_source_text( rtems_fatal_source source )