summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/include/rtems/score/interr.h7
-rw-r--r--cpukit/sapi/src/fatalsrctext.c3
2 files changed, 9 insertions, 1 deletions
diff --git a/cpukit/include/rtems/score/interr.h b/cpukit/include/rtems/score/interr.h
index 33e9524b65..e5a0a62cf6 100644
--- a/cpukit/include/rtems/score/interr.h
+++ b/cpukit/include/rtems/score/interr.h
@@ -144,6 +144,13 @@ typedef enum {
RTEMS_FATAL_SOURCE_HEAP = 13,
/**
+ * @brief Fatal source for spurious interrupts.
+ *
+ * The fatal code is the interrupt vector number of the spurious interrupt.
+ */
+ RTEMS_FATAL_SOURCE_SPURIOUS_INTERRUPT = 14,
+
+ /**
* @brief The last available fatal source.
*
* This enum value ensures that the enum type needs at least 32-bits for
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 )