From 145becf0759d39d7779760af8f1e11d623997938 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 2 May 2014 15:33:23 +0200 Subject: score: Add SMP test message handler This handler can be used to test the inter-processor interrupt implementation. --- cpukit/score/src/smp.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'cpukit/score/src/smp.c') 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; -- cgit v1.2.3