summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/smp.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-02-17 15:12:43 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-02-19 09:59:41 +0100
commit4d9bd56d2905c4a848e9f3c41210fc0f1be8b530 (patch)
treecda556f0b569a014b4a5879fdd3d57730641b713 /cpukit/score/src/smp.c
parentscore: Rename rtems_smp_secondary_cpu_initialize() (diff)
downloadrtems-4d9bd56d2905c4a848e9f3c41210fc0f1be8b530.tar.bz2
score: Rename rtems_smp_process_interrupt()
Rename rtems_smp_process_interrupt() into _SMP_Inter_processor_interrupt_handler(). Delete unused header file <rtems/bspsmp.h>.
Diffstat (limited to '')
-rw-r--r--cpukit/score/src/smp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpukit/score/src/smp.c b/cpukit/score/src/smp.c
index 86e9cd2bba..86116da3cf 100644
--- a/cpukit/score/src/smp.c
+++ b/cpukit/score/src/smp.c
@@ -18,7 +18,6 @@
#include "config.h"
#endif
-#include <rtems/bspsmp.h>
#include <rtems/score/smpimpl.h>
#include <rtems/score/assert.h>
#include <rtems/score/threaddispatch.h>
@@ -45,7 +44,7 @@ void _SMP_Start_multitasking_on_secondary_processor( void )
_Thread_Start_multitasking();
}
-void rtems_smp_process_interrupt( void )
+void _SMP_Inter_processor_interrupt_handler( void )
{
Per_CPU_Control *self_cpu = _Per_CPU_Get();