summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/smpimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-06 11:11:59 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-31 08:29:42 +0200
commit79e2d9b65efa5bd70ff12373b2454027a35b9788 (patch)
treee313708d829af0f507d3c69fb51ab5b70a7adf27 /cpukit/score/include/rtems/score/smpimpl.h
parenttests/fatal: Fix test names (diff)
downloadrtems-79e2d9b65efa5bd70ff12373b2454027a35b9788.tar.bz2
score: Add per-CPU state function
Add _Per_CPU_State_wait_for_ready_to_start_multitasking(). Add new fatal SMP error SMP_FATAL_SHUTDOWN_EARLY.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/smpimpl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/score/include/rtems/score/smpimpl.h b/cpukit/score/include/rtems/score/smpimpl.h
index 0c5882b04b..c32d4a2001 100644
--- a/cpukit/score/include/rtems/score/smpimpl.h
+++ b/cpukit/score/include/rtems/score/smpimpl.h
@@ -47,7 +47,8 @@ extern "C" {
* @brief SMP fatal codes.
*/
typedef enum {
- SMP_FATAL_SHUTDOWN
+ SMP_FATAL_SHUTDOWN,
+ SMP_FATAL_SHUTDOWN_EARLY
} SMP_Fatal_code;
/**