macro LFDS700_FREELIST_SET_KEY_IN_ELEMENT
Jump to navigation
Jump to search
Source Files
└───liblfds700 └───inc └───liblfds700 lfds700_freelist.h
Opaque Structures
struct lfds700_freelist_element;
Macro
#define LFDS700_FREELIST_SET_KEY_IN_ELEMENT( freelist_element, new_key )
Parameters
freelist_element
- A struct lfds700_freelist_element, which is not currently part of a freelist. Not a pointer to it - the struct itself.
new_key
- A pointer, which will be cast by the macro to a void *, which the key in freelist_element is set to.
Return Value
No return value.
Notes
The key in a freelist element can only be set when the element is outside of a freelist (i.e. has been popped, or has yet to be pushed). This macro can be called at any time, but if it is used on an element which is present in a freelist, all bets are off - all threads on the logical core which does this will see the change, but there is no guarantee any other logical cores will ever see the change. You were warned.
As with all liblfds macros, the macro operates on the structure itself, not a pointer to it.
The key is not used in any way by the freelist, and is provided for convenience when moving keys and values between different data structures.
Example
#include <stdio.h> #include "liblfds700.h" int main() { char freelist_element_name[64] = "Xenophon", *freelist_element_name_temp; struct lfds700_misc_prng_state ps; struct lfds700_freelist_element fe, *fe_temp; struct lfds700_freelist_state fs; lfds700_misc_library_init_valid_on_current_logical_core(); lfds700_misc_prng_init( &ps ); lfds700_freelist_init_valid_on_current_logical_core( &fs, NULL ); LFDS700_FREELIST_SET_KEY_IN_ELEMENT( &fe, freelist_element_name ); lfds700_freelist_push( &fs, &fe, &ps ); lfds700_freelist_pop( &fs, &fe_temp, &ps ); freelist_element_name_temp = (char *) LFDS700_FREELIST_GET_KEY_FROM_ELEMENT( *fs_temp ); printf( "freelist element name is \"%s\"\n", (char *) freelist_element_name_temp ); lfds700_freelist_cleanup( &fs, NULL ); lfds700_misc_library_cleanup(); return( EXIT_SUCCESS ); }