macro LFDS711_PAL_ASSERT

From liblfds.org
Revision as of 18:12, 16 February 2017 by Admin (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Source File

└───liblfds711
    └───inc
        └───liblfds711
                lfds711_porting_abstraction_layer_operating_system.h

define

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

Example

#define LFDS711_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