From e90486ab41a4edf045a6153675b6be9dcd422b71 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 11 Apr 2019 15:16:40 +0200 Subject: score: Rework SMP multicast action Use a FIFO list of jobs per processor to carry out the SMP multicast action. Use a done indicator per job to reduce the bus traffic a bit. --- cpukit/score/src/smp.c | 1 + 1 file changed, 1 insertion(+) (limited to 'cpukit/score/src/smp.c') diff --git a/cpukit/score/src/smp.c b/cpukit/score/src/smp.c index 873682962d..027c2e81d8 100644 --- a/cpukit/score/src/smp.c +++ b/cpukit/score/src/smp.c @@ -118,6 +118,7 @@ void _SMP_Handler_initialize( void ) cpu = _Per_CPU_Get_by_index( cpu_index ); _ISR_lock_Set_name( &cpu->Lock, "Per-CPU" ); + _ISR_lock_Set_name( &cpu->Jobs.Lock, "Per-CPU Jobs" ); _ISR_lock_Set_name( &cpu->Watchdog.Lock, "Per-CPU Watchdog" ); _Chain_Initialize_empty( &cpu->Threads_in_need_for_help ); } -- cgit v1.2.3