Difference between revisions of "r7.1.0:Macro LFDS710 PAL ASSERT"

From liblfds.org
Jump to navigation Jump to search
 
(No difference)

Latest revision as of 05:30, 27 May 2016

Source File

└───liblfds710
    └───inc
        └───liblfds710
                lfds710_porting_abstraction_layer_operating_system.h

define

#define LFDS710_PAL_ASSERT( expression )  [assert directive]( expression )

Example

#define LFDS710_PAL_ASSERT( expression )  BUG_ON( expression )

Optionality

This define is optional. If it is not given, the define must be empty, rather than absent.

Notes

All liblfds functions assert all their arguments and all init functions perform alignment checking on atomically accessed variables and structure members.

See Also