function lfds711_list_asu_link_after
Jump to navigation
Jump to search
Source Files
└───liblfds711 ├───inc │ └───liblfds711 │ lfds711_list_addonly_singlylinked_unordered.h └───src └───llfds711_list_addonly_singlylinked_unordered lfds711_list_addonly_singlylinked_unordered_insert.c
Opaque Structures
struct lfds711_list_asu_element; struct lfds711_list_asu_state;
Prototype
void lfds711_list_asu_link_after( struct lfds711_list_asu_state *lasus, struct lfds711_list_asu_element *lasue, struct lfds711_list_asu_element *lasue_predecessor );
Parameters
struct lfds711_list_asu_state *lasus
- A pointer to an initialized struct lfds711_list_asu_state.
struct lfds711_list_asu_element *lasue
- A pointer a user-allocated LFDS711_PAL_ATOMIC_ISOLATION_IN_BYTES aligned struct lfds711_list_asu_element. 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 lfds711_list_asu_element *lasue_predecessor
- A pointer an element already in the list.
Notes
This function takes a user allocated struct lfds711_list_asu_element and then links this element after *lasue_predecessor.