Name
echash_delref — Delete a reference to a hash table
Synopsis
#include "echash.h"
| (void) **echash_delref** (
| ht)
; | |
Description
Delete a reference to a hash table. Use echash_destroy to destroy a hash table.
Note
If the refcount falls to zero, This function implicitly calls echash_delete
with the keyfree datafree functions supplied when the hash was created.
- ht
-
The hash table that you wish to delete.
This function returns void.
It is legal to call this function in any thread.
The hash table data structure is not thread safe; any simultaneous access needs to be coordinated by the API consumer.
See Also
Was this page helpful?