macro LFDS711_LIST_ASO_SET_KEY_IN_ELEMENT

From liblfds.org
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_KEY_IN_ELEMENT( list_aso_element, new_key )

Parameters

list_aso_element

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

new_key

A void pointer, which the key 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 key can only be set before an element enters the list. If it is set after, the list will likely be broken (as the new key, likely being different to the old key, would most likely require the element to be in a different position in the tree, and this element movement is not supported) and also, key is not set atomically, so that even if a change was made, there is in principle no guarantee any other logical core would see that change anyway.

Key is not set atomically because it is known it will only be set before an element enters the tree. Matters can be (and have been) arranged to ensure key is despite the lack of an atomic set correctly propagated to other logical cores, but this is a behaviour of the linking code, not of the macro which sets key.

Example

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

See Also