From 4b04cb61552dbaa1a42a64e2f7b823708127e488 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 18 May 2016 08:03:05 +0200 Subject: score: Rename _ISR_Disable_without_giant() Rename _ISR_Disable_without_giant() into _ISR_Local_disable(). Rename _ISR_Enable_without_giant() into _ISR_Local_enable(). This is a preparation to remove the Giant lock. Update #2555. --- cpukit/score/src/smpmulticastaction.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/score/src/smpmulticastaction.c') diff --git a/cpukit/score/src/smpmulticastaction.c b/cpukit/score/src/smpmulticastaction.c index d5d00641e8..10a4929684 100644 --- a/cpukit/score/src/smpmulticastaction.c +++ b/cpukit/score/src/smpmulticastaction.c @@ -74,7 +74,7 @@ _SMP_Multicast_actions_try_process( void ) Per_CPU_Control *cpu_self; ISR_Level isr_level; - _ISR_Disable_without_giant( isr_level ); + _ISR_Local_disable( isr_level ); cpu_self = _Per_CPU_Get(); @@ -88,7 +88,7 @@ _SMP_Multicast_actions_try_process( void ) } } - _ISR_Enable_without_giant( isr_level ); + _ISR_Local_enable( isr_level ); } void _SMP_Multicast_action( -- cgit v1.2.3