summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/smp.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/smp.c')
-rw-r--r--cpukit/score/src/smp.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/cpukit/score/src/smp.c b/cpukit/score/src/smp.c
index 34db46ad1e..3094fe31f8 100644
--- a/cpukit/score/src/smp.c
+++ b/cpukit/score/src/smp.c
@@ -166,3 +166,11 @@ void _SMP_Broadcast_message( uint32_t message )
}
}
}
+
+static void _SMP_Test_message_default_handler( Per_CPU_Control *cpu_self )
+{
+ (void) cpu_self;
+}
+
+SMP_Test_message_handler _SMP_Test_message_handler =
+ _SMP_Test_message_default_handler;