summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score/smpimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-04-28 14:29:21 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-05-20 08:49:39 +0200
commit7fdf48aaf241cb050607a8aa441ff19a34a7ddb7 (patch)
treee89ebda03beaad701aab9a399a6a0da1a2d944b1 /cpukit/include/rtems/score/smpimpl.h
parentscore: Add _SMP_Broadcast_action() (diff)
downloadrtems-7fdf48aaf241cb050607a8aa441ff19a34a7ddb7.tar.bz2
score: Add _SMP_Othercast_action()
Diffstat (limited to '')
-rw-r--r--cpukit/include/rtems/score/smpimpl.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/cpukit/include/rtems/score/smpimpl.h b/cpukit/include/rtems/score/smpimpl.h
index bc24f828fe..452f39a3b5 100644
--- a/cpukit/include/rtems/score/smpimpl.h
+++ b/cpukit/include/rtems/score/smpimpl.h
@@ -284,6 +284,21 @@ void _SMP_Broadcast_action(
void *arg
);
+/**
+ * @brief Initiates an SMP multicast action to the set of all online
+ * processors excluding the current processor.
+ *
+ * Simply calls _SMP_Multicast_action() with _SMP_Get_online_processors() as
+ * the target processor set excluding the current processor.
+ *
+ * @param handler The multicast action handler.
+ * @param arg The multicast action argument.
+ */
+void _SMP_Othercast_action(
+ SMP_Action_handler handler,
+ void *arg
+);
+
#endif /* defined( RTEMS_SMP ) */
/**