r6.1.1:lfds611_freelist_new_elements
Source Files
/liblfds611/src/lfds611_freelist/lfds611_freelist_new.c /liblfds611/inc/liblfds611.h
Prototype
lfds611_atom_t lfds611_freelist_new_elements( struct lfds611_freelist_state *fs, lfds611_atom_t number_elements );
Parameters
struct lfds611_freelist_state *fs
- A freelist state as allocated by lfds611_freelist_new.
lfds611_atom_t number_elements
- The number of additional elements to add to the freelist.
Return Value
The number of elements added to the freelist.
Notes
This function creates a new freelist element and adds it to the freelist, repeating this process number_elements times. Each element will be passed to the user_data_init_function function passed into the lfds611_freelist_new function. That function will also be passed the user_state argument which was provided to lfds611_freelist_new. If element creation fails (will can be only due to memory allocation failure or failure of the user initialisation function), that element will not be created and so the number of elements actually added to the freelist will be less than the requested number.
This function is thread-safe; it can be used in parallel with other functions adding new elements and with pushing and popping.