score: Add RTEMS_FATAL_SOURCE_SMP

Use rtems_fatal() instead of _CPU_Fatal_halt() to shutdown processors in
SMP configurations since this allows intervention of BSP or application
specific fatal extensions.
This commit is contained in:
Sebastian Huber
2014-02-19 09:59:40 +01:00
parent 46d7fa5cd3
commit 9eec2f33e9
6 changed files with 20 additions and 7 deletions
+2 -1
View File
@@ -36,7 +36,8 @@ static const char *const fatal_source_text[] = {
"RTEMS_FATAL_SOURCE_BSP",
"RTEMS_FATAL_SOURCE_ASSERT",
"RTEMS_FATAL_SOURCE_STACK_CHECKER",
"RTEMS_FATAL_SOURCE_EXCEPTION"
"RTEMS_FATAL_SOURCE_EXCEPTION",
"RTEMS_FATAL_SOURCE_SMP"
};
const char *rtems_fatal_source_text( rtems_fatal_source source )