score: Avoid unused variable warnings

This commit is contained in:
Sebastian Huber
2016-02-02 15:21:07 +01:00
parent 10f28914f8
commit db329a72c1

View File

@@ -254,7 +254,8 @@ typedef struct {
&( _context )->Lock_context \
)
#else
#define _ISR_lock_Acquire( _lock, _context )
#define _ISR_lock_Acquire( _lock, _context ) \
(void) _context;
#endif
/**
@@ -276,7 +277,8 @@ typedef struct {
&( _context )->Lock_context \
)
#else
#define _ISR_lock_Release( _lock, _context )
#define _ISR_lock_Release( _lock, _context ) \
(void) _context;
#endif
/**