From 247131632173158cb2668d4e5c7464951b668067 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 18 May 2016 08:06:54 +0200 Subject: score: Rename _ISR_Disable() and _ISR_Enable() Rename _ISR_Disable() into _ISR_Local_disable(). Rename _ISR_Enable() into _ISR_Local_enable(). Remove _Debug_Is_owner_of_giant(). This is a preparation to remove the Giant lock. Update #2555. --- cpukit/score/include/rtems/score/isrlock.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 2af75c94cd..3843fd6454 100644 --- a/cpukit/score/include/rtems/score/isrlock.h +++ b/cpukit/score/include/rtems/score/isrlock.h @@ -203,7 +203,7 @@ typedef struct { ) #else #define _ISR_lock_ISR_disable_and_acquire( _lock, _context ) \ - _ISR_Disable( ( _context )->isr_level ) + _ISR_Local_disable( ( _context )->isr_level ) #endif /** @@ -228,7 +228,7 @@ typedef struct { ) #else #define _ISR_lock_Release_and_ISR_enable( _lock, _context ) \ - _ISR_Enable( ( _context )->isr_level ) + _ISR_Local_enable( ( _context )->isr_level ) #endif /** @@ -357,7 +357,7 @@ typedef struct { #else #define _ISR_lock_ISR_disable( _context ) \ do { \ - _ISR_Disable( ( _context )->isr_level ); \ + _ISR_Local_disable( ( _context )->isr_level ); \ _ISR_lock_ISR_disable_profile( _context ) \ } while ( 0 ) #endif @@ -377,7 +377,7 @@ typedef struct { _ISR_Local_enable( ( _context )->Lock_context.isr_level ) #else #define _ISR_lock_ISR_enable( _context ) \ - _ISR_Enable( ( _context )->isr_level ) + _ISR_Local_enable( ( _context )->isr_level ) #endif /** @} */ -- cgit v1.2.3