summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/smpimpl.h
diff options
context:
space:
mode:
authorDaniel Cederman <cederman@gaisler.com>2014-07-08 11:33:55 +0200
committerDaniel Hellstrom <daniel@gaisler.com>2014-08-22 13:10:58 +0200
commita68cc1bb10e72504a6c4169c64eb1cfc1280da67 (patch)
tree2419c0fbd4aebfeddd4bf27e71377ba6905396ca /cpukit/score/include/rtems/score/smpimpl.h
parentlibchip/dwmac: Make PHY address user configurable (diff)
downloadrtems-a68cc1bb10e72504a6c4169c64eb1cfc1280da67.tar.bz2
score: Add function to send a SMP message to a set of CPUs
Diffstat (limited to 'cpukit/score/include/rtems/score/smpimpl.h')
-rw-r--r--cpukit/score/include/rtems/score/smpimpl.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/cpukit/score/include/rtems/score/smpimpl.h b/cpukit/score/include/rtems/score/smpimpl.h
index e2fee39a36..d49f88fcbb 100644
--- a/cpukit/score/include/rtems/score/smpimpl.h
+++ b/cpukit/score/include/rtems/score/smpimpl.h
@@ -175,6 +175,21 @@ void _SMP_Broadcast_message(
uint32_t message
);
+/**
+ * @brief Sends a SMP message to a set of processors.
+ *
+ * The sending processor may be part of the set.
+ *
+ * @param[in] setsize The size of the set of target processors of the message.
+ * @param[in] cpus The set of target processors of the message.
+ * @param[in] message The message.
+ */
+void _SMP_Send_message_multicast(
+ const size_t setsize,
+ const cpu_set_t *cpus,
+ unsigned long message
+);
+
#endif /* defined( RTEMS_SMP ) */
/**