summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/smp.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/smp.c')
-rw-r--r--cpukit/score/src/smp.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/cpukit/score/src/smp.c b/cpukit/score/src/smp.c
index bfd77dcdd9..5e098e645a 100644
--- a/cpukit/score/src/smp.c
+++ b/cpukit/score/src/smp.c
@@ -34,6 +34,12 @@ void _SMP_Handler_initialize( void )
uint32_t max_cpus = rtems_configuration_get_maximum_processors();
uint32_t cpu;
+ for ( cpu = 0 ; cpu < max_cpus; ++cpu ) {
+ Per_CPU_Control *per_cpu = _Per_CPU_Get_by_index( cpu );
+
+ _ISR_lock_Initialize( &per_cpu->lock );
+ }
+
/*
* Discover and initialize the secondary cores in an SMP system.
*/