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/include/rtems/score/isrlock.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/score/include/rtems/score/isrlock.h') diff --git a/cpukit/score/include/rtems/score/isrlock.h b/cpukit/score/include/rtems/score/isrlock.h index f87f5550fc..2af75c94cd 100644 --- a/cpukit/score/include/rtems/score/isrlock.h +++ b/cpukit/score/include/rtems/score/isrlock.h @@ -351,7 +351,7 @@ typedef struct { #if defined( RTEMS_SMP ) #define _ISR_lock_ISR_disable( _context ) \ do { \ - _ISR_Disable_without_giant( ( _context )->Lock_context.isr_level ); \ + _ISR_Local_disable( ( _context )->Lock_context.isr_level ); \ _ISR_lock_ISR_disable_profile( _context ) \ } while ( 0 ) #else @@ -374,7 +374,7 @@ typedef struct { */ #if defined( RTEMS_SMP ) #define _ISR_lock_ISR_enable( _context ) \ - _ISR_Enable_without_giant( ( _context )->Lock_context.isr_level ) + _ISR_Local_enable( ( _context )->Lock_context.isr_level ) #else #define _ISR_lock_ISR_enable( _context ) \ _ISR_Enable( ( _context )->isr_level ) -- cgit v1.2.3