summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/intrbody.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems/src/intrbody.c')
-rw-r--r--cpukit/rtems/src/intrbody.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/rtems/src/intrbody.c b/cpukit/rtems/src/intrbody.c
index a82dc101e6..abee60d5b7 100644
--- a/cpukit/rtems/src/intrbody.c
+++ b/cpukit/rtems/src/intrbody.c
@@ -47,7 +47,7 @@ rtems_interrupt_level rtems_interrupt_disable( void )
{
rtems_interrupt_level previous_level;
- _ISR_Disable( previous_level );
+ _ISR_Local_disable( previous_level );
return previous_level;
}
@@ -56,7 +56,7 @@ void rtems_interrupt_enable(
rtems_interrupt_level previous_level
)
{
- _ISR_Enable( previous_level );
+ _ISR_Local_enable( previous_level );
}
void rtems_interrupt_flash(