Difference between revisions of "r6.0.1:Lfds601 freelist delete"
Jump to navigation
Jump to search
m (1 revision imported) |
(No difference)
|
Latest revision as of 14:07, 4 January 2015
Source Files
/liblfds601/src/lfds601_freelist/lfds601_freelist_delete.c /liblfds601/inc/liblfds601.h
Prototype
void lfds601_freelist_delete( struct lfds601_freelist_state *fs, void (*user_data_delete_function)(void *user_data, void *user_state), void *user_state );
Parameters
struct lfds601_freelist_state *fs
- A freelist state as allocated by lfds601_freelist_new.
void (*user_data_delete_function)(void *user_data, void *user_state)
- A callback function, which can be NULL. This function is called with the user data void pointer from each element before that element is deleted, giving the user an opportunity to delete any allocated state.
void *user_state
- This pointer is passed into the user_data_delete_function as its second argument, enabling the caller to pass state into the callback function.
Return Value
No return value.
Notes
This function deletes the freelist. Any elements which have been popped and not returned to the freelist will be memory leaked when this function is called. As such, it is obviously necessary to ensure all elements are pushed onto the freelist before deleting the freelist.