macro LFDS700_PAL_ASSERT

From liblfds.org
Jump to navigation Jump to search

Source File

└───liblfds700
    └───inc
        └───liblfds700
                lfds700_lfds700_porting_abstraction_layer_operating_system.h

define

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

Example

#define LFDS700_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 and test functions assert all their arguments and perform alignment checking on atomically accessed variables in those arguments.

See Also