From b1d08a58b2484797e90da3cc6c045c050095d9cd Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 18 Feb 2014 13:20:08 +0100 Subject: score: Initialize per-CPU locks --- cpukit/score/src/smp.c | 6 ++++++ 1 file changed, 6 insertions(+) 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. */ -- cgit v1.2.3