summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/isrlock.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/isrlock.h8
1 files changed, 4 insertions, 4 deletions
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
/** @} */