Skip to content

Commit

Permalink
remove useless function declaration do_assoc_move_next_bucket()
Browse files Browse the repository at this point in the history
  • Loading branch information
xuesenliang authored and dormando committed Mar 8, 2023
1 parent a9f1785 commit dddbfe9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion assoc.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
/* associative array */
void assoc_init(const int hashpower_init);

item *assoc_find(const char *key, const size_t nkey, const uint32_t hv);
int assoc_insert(item *item, const uint32_t hv);
void assoc_delete(const char *key, const size_t nkey, const uint32_t hv);
void do_assoc_move_next_bucket(void);

int start_assoc_maintenance_thread(void);
void stop_assoc_maintenance_thread(void);
void assoc_start_expand(uint64_t curr_items);

/* walk functions */
void *assoc_get_iterator(void);
bool assoc_iterate(void *iterp, item **it);
Expand Down

0 comments on commit dddbfe9

Please sign in to comment.