macro LFDS711_LIST_ASO_SET_VALUE_IN_ELEMENT

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_list_addonly_singlylinked_ordered.h

Opaque Structures

struct lfds711_list_aso_element;

Macro

#define LFDS711_LIST_ASO_SET_VALUE_IN_ELEMENT( list_aso_element, new_value )

Parameters

list_aso_element

A struct lfds711_list_aso_element. Not a pointer to it - the struct itself.

new_value

A void pointer, which the value in list_aso_element is set to.

Return Value

No return value.

Notes

As with all liblfds macros, the macro operates on the structure itself, not a pointer to it.

The value is set atomically, and so can be used at any time, on an element in the list or before it enters the list, unlike setting a key, which can only be done before an element enters the list.

Example

Coming soon. No, really! (Written 29th Dec 2015).

See Also