score: Make _ISR_Enable_without_giant() available

Make _ISR_Enable_without_giant() available for non-SMP configurations.
This commit is contained in:
Sebastian Huber
2014-03-18 10:56:17 +01:00
parent 614cd7a468
commit fa3993d92d

View File

@@ -142,16 +142,12 @@ typedef uint32_t ISR_Level;
RTEMS_COMPILER_MEMORY_BARRIER(); \
} while (0)
#if defined( RTEMS_SMP )
#define _ISR_Enable_without_giant( _level ) \
do { \
RTEMS_COMPILER_MEMORY_BARRIER(); \
_CPU_ISR_Enable( _level ); \
} while (0)
#endif /* defined( RTEMS_SMP ) */
/**@}*/
#ifdef __cplusplus