summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-18 08:08:38 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-20 07:50:37 +0200
commitc2f301b580ebb4a46d657651a814bc9348103546 (patch)
treeba75220f4a2ab65a07d984f37891ff72c521dc38 /cpukit/rtems
parentscore: Rename _ISR_Disable() and _ISR_Enable() (diff)
downloadrtems-c2f301b580ebb4a46d657651a814bc9348103546.tar.bz2
score: Rename _ISR_Flash() into _ISR_Local_flash()
This is a preparation to remove the Giant lock. Update #2555.
Diffstat (limited to 'cpukit/rtems')
-rw-r--r--cpukit/rtems/include/rtems/rtems/intr.h2
-rw-r--r--cpukit/rtems/src/intrbody.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/intr.h b/cpukit/rtems/include/rtems/rtems/intr.h
index 4142230b31..7f99d93883 100644
--- a/cpukit/rtems/include/rtems/rtems/intr.h
+++ b/cpukit/rtems/include/rtems/rtems/intr.h
@@ -123,7 +123,7 @@ rtems_status_code rtems_interrupt_catch(
* available on all configurations.
*/
#define rtems_interrupt_flash( _isr_cookie ) \
- _ISR_Flash(_isr_cookie)
+ _ISR_Local_flash(_isr_cookie)
#endif /* RTEMS_SMP */
diff --git a/cpukit/rtems/src/intrbody.c b/cpukit/rtems/src/intrbody.c
index abee60d5b7..1fabd4cdd8 100644
--- a/cpukit/rtems/src/intrbody.c
+++ b/cpukit/rtems/src/intrbody.c
@@ -63,7 +63,7 @@ void rtems_interrupt_flash(
rtems_interrupt_level previous_level
)
{
- _ISR_Flash( previous_level );
+ _ISR_Local_flash( previous_level );
}
#endif /* RTEMS_SMP */