summaryrefslogtreecommitdiffstats
path: root/testsuites/smptests/smpfatal08
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-02-16 11:55:03 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-02-17 09:41:27 +0100
commitc34f94f72df4e88e1c4ea7d7f97f14a9ec6296ef (patch)
treebbd8bc6206b6a23709b39a5b0c0d951512b3b33c /testsuites/smptests/smpfatal08
parentIMFS: Implement variable length node names (diff)
downloadrtems-c34f94f72df4e88e1c4ea7d7f97f14a9ec6296ef.tar.bz2
score: Add _CPU_SMP_Prepare_start_multitasking()
Update #2268.
Diffstat (limited to 'testsuites/smptests/smpfatal08')
-rw-r--r--testsuites/smptests/smpfatal08/init.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/testsuites/smptests/smpfatal08/init.c b/testsuites/smptests/smpfatal08/init.c
index 0c51ef0ba4..b0fc52a40c 100644
--- a/testsuites/smptests/smpfatal08/init.c
+++ b/testsuites/smptests/smpfatal08/init.c
@@ -56,6 +56,11 @@ void _CPU_SMP_Finalize_initialization(uint32_t cpu_count)
assert(0);
}
+void _CPU_SMP_Prepare_start_multitasking(void)
+{
+ assert(0);
+}
+
#if defined(RTEMS_PARAVIRT) \
|| (!defined(__leon__) && !defined(__PPC__) && !defined(__arm__))
uint32_t _CPU_SMP_Get_current_processor(void)
@@ -64,13 +69,6 @@ uint32_t _CPU_SMP_Get_current_processor(void)
}
#endif
-#if defined(__leon__)
-void _LEON3_Start_multitasking(Context_Control *heir)
-{
- assert(0);
-}
-#endif
-
void _CPU_SMP_Send_interrupt(uint32_t target_processor_index)
{
(void) target_processor_index;