[rtems commit] score: Rename SMP broadcast message function

Daniel Hellstrom danielh at rtems.org
Fri Aug 22 11:07:54 UTC 2014


Module:    rtems
Branch:    master
Commit:    aed38189be6503f51d2a4f7fb234ba578a3e227e
Changeset: http://git.rtems.org/rtems/commit/?id=aed38189be6503f51d2a4f7fb234ba578a3e227e

Author:    Daniel Cederman <cederman at gaisler.com>
Date:      Tue Jul  8 11:35:14 2014 +0200

score: Rename SMP broadcast message function

Change message type to unsigned long to match other SMP message functions.

---

 cpukit/score/include/rtems/score/smpimpl.h |    4 ++--
 cpukit/score/src/smp.c                     |    2 +-
 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 d49f88f..cbc6428 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 7140664..09246e3 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();



More information about the vc mailing list