diff options
| author | Simo Sorce <ssorce@redhat.com> | 2009-12-08 14:05:22 -0500 |
|---|---|---|
| committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-12-08 23:35:30 -0500 |
| commit | 4a5e256201c886d09a8dadd3f299baadde506a2f (patch) | |
| tree | e78333c8b8fac1e468244337819cb863e7babc62 /dhash/dhash_test.c | |
| parent | 34d3eb975ec23c9875d54226a5b625a2f9b4ad51 (diff) | |
dhash: Add private pointer for delete callback
Also pass a flag to the delete callback to tell it if this is a normal
entry removal or we are cleaning up the tbale definitively.
Diffstat (limited to 'dhash/dhash_test.c')
| -rw-r--r-- | dhash/dhash_test.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dhash/dhash_test.c b/dhash/dhash_test.c index fedfa66..27eb88d 100644 --- a/dhash/dhash_test.c +++ b/dhash/dhash_test.c @@ -98,7 +98,7 @@ bool callback(hash_entry_t *item, void *user_data) return true; } -void delete_callback(hash_entry_t *item) +void delete_callback(hash_entry_t *item, hash_destroy_enum type, void *pvt) { if (item->value.type == HASH_VALUE_PTR) free(item->value.ptr); } @@ -188,7 +188,8 @@ int main(int argc, char **argv) if ((status = hash_create_ex(1, &table, directory_bits, segment_bits, min_load_factor, max_load_factor, - NULL, NULL, NULL, delete_callback)) != HASH_SUCCESS) { + NULL, NULL, NULL, + delete_callback, NULL)) != HASH_SUCCESS) { fprintf(stderr, "table creation failed at line %d (%s)\n", __LINE__, error_string(status)); exit(1); } |
