summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Cederman <cederman@gaisler.com>2014-07-08 11:35:14 +0200
committerDaniel Hellstrom <daniel@gaisler.com>2014-08-22 13:10:59 +0200
commitaed38189be6503f51d2a4f7fb234ba578a3e227e (patch)
treeb74df7b3e9e19541b3b523f06a815043cca7b793
parentscore: Add function to send a SMP message to a set of CPUs (diff)
downloadrtems-aed38189be6503f51d2a4f7fb234ba578a3e227e.tar.bz2
score: Rename SMP broadcast message function
Change message type to unsigned long to match other SMP message functions.
-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();