From 6f6cf78501d8d953983dfc68d5ec83f78856be92 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 5 Jul 2016 09:04:15 +0200 Subject: score: Postpone SMP shutdown in _Terminate() This enables fatal extensions to continue program execution after some fatal errors. --- cpukit/score/src/smp.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'cpukit/score/src/smp.c') diff --git a/cpukit/score/src/smp.c b/cpukit/score/src/smp.c index d6aad85e76..b8d9cb6e26 100644 --- a/cpukit/score/src/smp.c +++ b/cpukit/score/src/smp.c @@ -158,9 +158,12 @@ void _SMP_Start_multitasking_on_secondary_processor( void ) void _SMP_Request_shutdown( void ) { - Per_CPU_Control *self_cpu = _Per_CPU_Get(); + ISR_Level level; + + _ISR_Local_disable( level ); + (void) level; - _Per_CPU_State_change( self_cpu, PER_CPU_STATE_SHUTDOWN ); + _Per_CPU_State_change( _Per_CPU_Get(), PER_CPU_STATE_SHUTDOWN ); } void _SMP_Send_message( uint32_t cpu_index, unsigned long message ) -- cgit v1.2.3