summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/score/include/rtems/score/smpimpl.h4
-rw-r--r--cpukit/score/src/smp.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/smpimpl.h b/cpukit/score/include/rtems/score/smpimpl.h
index d49f88fcbb..cbc64280de 100644
--- a/cpukit/score/include/rtems/score/smpimpl.h
+++ b/cpukit/score/include/rtems/score/smpimpl.h
@@ -171,8 +171,8 @@ void _SMP_Send_message( uint32_t cpu_index, unsigned long message );
*
* @param [in] message is message to send
*/
-void _SMP_Broadcast_message(
- uint32_t message
+void _SMP_Send_message_broadcast(
+ unsigned long message
);
/**
diff --git a/cpukit/score/src/smp.c b/cpukit/score/src/smp.c
index 71406647ff..09246e3a8c 100644
--- a/cpukit/score/src/smp.c
+++ b/cpukit/score/src/smp.c
@@ -162,7 +162,7 @@ void _SMP_Send_message( uint32_t cpu_index, unsigned long message )
_CPU_SMP_Send_interrupt( cpu_index );
}
-void _SMP_Broadcast_message( uint32_t message )
+void _SMP_Send_message_broadcast( unsigned long message )
{
uint32_t cpu_count = _SMP_Get_processor_count();
uint32_t cpu_index_self = _SMP_Get_current_processor();