summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/smpimpl.h
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 /cpukit/score/include/rtems/score/smpimpl.h
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.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/smpimpl.h4
1 files changed, 2 insertions, 2 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
);
/**