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/rtems/include/rtems/rtems/intr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/rtems/include/rtems/rtems/intr.h') diff --git a/cpukit/rtems/include/rtems/rtems/intr.h b/cpukit/rtems/include/rtems/rtems/intr.h index f9c601b651..ebf7a58f0c 100644 --- a/cpukit/rtems/include/rtems/rtems/intr.h +++ b/cpukit/rtems/include/rtems/rtems/intr.h @@ -139,7 +139,7 @@ rtems_status_code rtems_interrupt_catch( * @see rtems_interrupt_local_enable(). */ #define rtems_interrupt_local_disable( _isr_cookie ) \ - _ISR_Disable_without_giant( _isr_cookie ) + _ISR_Local_disable( _isr_cookie ) /** * @brief This macro restores the previous interrupt level on the current @@ -149,7 +149,7 @@ rtems_status_code rtems_interrupt_catch( * rtems_interrupt_local_disable(). */ #define rtems_interrupt_local_enable( _isr_cookie ) \ - _ISR_Enable_without_giant( _isr_cookie ) + _ISR_Local_enable( _isr_cookie ) /** * @brief RTEMS Interrupt Is in Progress -- cgit v1.2.3