score: Remove ISR_LOCK_REFERENCE()

Update #4957 and #5038.
This commit is contained in:
Sebastian Huber
2024-06-18 11:56:09 +02:00
parent bdbda6a75f
commit fa24398857

View File

@@ -138,21 +138,6 @@ typedef struct {
#define ISR_LOCK_DECLARE( _qualifier, _designator )
#endif
/**
* @brief Defines an ISR lock variable reference.
*
* Do not add a ';' after this macro.
*
* @param _designator The designator for the interrupt lock reference.
* @param _target The target for the interrupt lock reference.
*/
#if defined( RTEMS_SMP )
#define ISR_LOCK_REFERENCE( _designator, _target ) \
ISR_lock_Control *_designator = _target;
#else
#define ISR_LOCK_REFERENCE( _designator, _target )
#endif
/**
* @brief Initializer for static initialization of ISR locks.
*