X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=urcu%2Frculfhash.h;h=8f501ea29b7b1e549c9b2d87f9ecf2e769251af0;hp=37e36b7a389d6090810f1ea81808bda0b95a6afd;hb=bce63dfd0a2306452c9e39f5df01789e77f3f44a;hpb=6878c72b085ace6e114ad989e624887528ec05cd diff --git a/urcu/rculfhash.h b/urcu/rculfhash.h index 37e36b7..8f501ea 100644 --- a/urcu/rculfhash.h +++ b/urcu/rculfhash.h @@ -72,6 +72,13 @@ void cds_lfht_node_init(struct cds_lfht_node *node, void *key, node->key_len = key_len; } +/* + * Hash table creation flags. + */ +enum { + CDS_LFHT_AUTO_RESIZE = (1U << 0), +}; + /* * cds_lfht_new - allocate a hash table. * @@ -82,8 +89,12 @@ struct cds_lfht *cds_lfht_new(cds_lfht_hash_fct hash_fct, cds_lfht_compare_fct compare_fct, unsigned long hash_seed, unsigned long init_size, + int flags, void (*cds_lfht_call_rcu)(struct rcu_head *head, - void (*func)(struct rcu_head *head))); + void (*func)(struct rcu_head *head)), + void (*cds_lfht_synchronize_rcu)(void), + void (*cds_lfht_rcu_read_lock)(void), + void (*cds_lfht_rcu_read_unlock)(void)); /* * cds_lfht_destroy - destroy a hash table. @@ -147,11 +158,9 @@ int cds_lfht_remove(struct cds_lfht *ht, struct cds_lfht_node *node); /* * cds_lfht_resize - Force a hash table resize - * @growth: growth order (current size is multiplied by 2^growth) - * - * Currently, only expand operation is supported (growth >= 0). + * @new_size: update to this hash table size. */ -void cds_lfht_resize(struct cds_lfht *ht, int growth); +void cds_lfht_resize(struct cds_lfht *ht, unsigned long new_size); #ifdef __cplusplus }