function lfds710_queue_bmm_init_valid_on_current_logical_core

From liblfds.org
Jump to navigation Jump to search

Source Files

└───liblfds710
    ├───inc
    │   └───liblfds710
    │           lfds710_queue_bmm.h
    └───src
        └───llfds710_queue
                lfds710_queue_bmm_init.c

Opaque Structures

struct lfds710_queue_bmm_element;
struct lfds710_queue_bmm_state;

Prototype

void lfds710_queue_bmm_init_valid_on_current_logical_core( struct lfds710_queue_bmm_state *qbmms,
                                                           struct lfds710_queue_bmm_element *element_array,
                                                           lfds710_pal_uint_t number_elements,
                                                           void *user_state );

Parameters

struct lfds710_queue_bmm_state *qbmms

A pointer to a user-allocated LFDS710_PAL_ATOMIC_ISOLATION_IN_BYTES aligned struct lfds710_queue_bmm_state. Stack declared variables will automatically be correctly aligned by the compiler, due to the information in the structure definitions; nothing has to be done. Heap allocated variables however will by no means be correctly aligned and an aligned malloc must be used.

struct lfds710_queue_bmm_element *element_array

A pointer to a user-allocated array of struct lfds710_queue_bmm_element. There are no alignment requirements for this allocation.

lfds710_pal_uint_t number_elements

The number of elements in the array pointed to by element_array. The number of elements in the array must be a positive integer power of two, i.e. two, four, eight, sixteen, etc.

void *user_state

A pointer to void, supplied by the user, which is returned to the user in various callback functions, permitting the user to pass his own state into those functions. This argument can be NULL.

Notes

The number of elements in the array must be a positive integer power of two, i.e. two, four, eight, sixteen, etc.

As the function name indicates, the initialization work performed on the queue state is only valid on the current logical core. To make this work valid on other logical cores, threads on other cores must call LFDS710_MISC_MAKE_VALID_ON_CURRENT_LOGICAL_CORE_INITS_COMPLETED_BEFORE_NOW_ON_ANY_OTHER_LOGICAL_CORE.

See Also