define LFDS711_PAL_ALIGN_DOUBLE_POINTER

From liblfds.org
Revision as of 18:11, 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_processor.h

Define

#define LFDS711_PAL_ALIGN_DOUBLE_POINTER  [lfds711_pal_uint_t size in bytes multiplied by two]

Example

#define LFDS711_PAL_ALIGN_DOUBLE_POINTER  16

Optionality

This define is mandatory and the library cannot compile if it is not set.

Notes

The value to use for this define is sizeof(lfds711_pal_uint_t), multipled by 2. Unfortunately, compilers do not accept C code as an argument to their alignment keyword, so it is not possible to use sizeof(lfds711_pal_uint_t)*2, or even LFDS711_PAL_ALIGN_SINGLE_POINTER*2, in the source code. As such, it must be provided in a define.

See Also