summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-28 13:06:11 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-28 19:32:24 +0200
commit70ec9bd44d46137d30229606bd34f571fe69cea7 (patch)
treedb17b2ad2e2c73df41c607c52081e91056020ee2 /cpukit/score/src
parentscore: Simplify SMP processor state handling (diff)
downloadrtems-70ec9bd44d46137d30229606bd34f571fe69cea7.tar.bz2
score: Remove SMP message multicast/broadcast
Remove the unused _SMP_Send_message_multicast() and _SMP_Send_message_broadcast().
Diffstat (limited to '')
-rw-r--r--cpukit/score/src/smp.c40
1 files changed, 1 insertions, 39 deletions
diff --git a/cpukit/score/src/smp.c b/cpukit/score/src/smp.c
index 2c37cd6884..d778229712 100644
--- a/cpukit/score/src/smp.c
+++ b/cpukit/score/src/smp.c
@@ -7,8 +7,7 @@
* and ::_SMP_Processor_maximum and the implementation of
* _SMP_Handler_initialize(), _SMP_Process_message(),
* _SMP_Request_shutdown(), _SMP_Request_start_multitasking(),
- * _SMP_Send_message(), _SMP_Send_message_broadcast(),
- * _SMP_Send_message_multicast(), _SMP_Should_start_processor(),
+ * _SMP_Send_message(), _SMP_Should_start_processor(),
* _SMP_Start_multitasking_on_secondary_processor(), and
* _SMP_Try_to_process_message().
*/
@@ -334,40 +333,3 @@ void _SMP_Send_message( uint32_t cpu_index, unsigned long message )
_CPU_SMP_Send_interrupt( cpu_index );
}
}
-
-void _SMP_Send_message_broadcast( unsigned long message )
-{
- uint32_t cpu_max;
- uint32_t cpu_index_self;
- uint32_t cpu_index;
-
- _Assert( _Debug_Is_thread_dispatching_allowed() );
- cpu_max = _SMP_Get_processor_maximum();
- cpu_index_self = _SMP_Get_current_processor();
-
- for ( cpu_index = 0 ; cpu_index < cpu_max ; ++cpu_index ) {
- if (
- cpu_index != cpu_index_self
- && _Processor_mask_Is_set( &_SMP_Online_processors, cpu_index )
- ) {
- _SMP_Send_message( cpu_index, message );
- }
- }
-}
-
-void _SMP_Send_message_multicast(
- const Processor_mask *targets,
- unsigned long message
-)
-{
- uint32_t cpu_max;
- uint32_t cpu_index;
-
- cpu_max = _SMP_Get_processor_maximum();
-
- for ( cpu_index = 0 ; cpu_index < cpu_max ; ++cpu_index ) {
- if ( _Processor_mask_Is_set( targets, cpu_index ) ) {
- _SMP_Send_message( cpu_index, message );
- }
- }
-}