Blame assoc.h

Packit Service 584ef9
/* associative array */
Packit Service 584ef9
void assoc_init(const int hashpower_init);
Packit Service 584ef9
item *assoc_find(const char *key, const size_t nkey, const uint32_t hv);
Packit Service 584ef9
int assoc_insert(item *item, const uint32_t hv);
Packit Service 584ef9
void assoc_delete(const char *key, const size_t nkey, const uint32_t hv);
Packit Service 584ef9
void do_assoc_move_next_bucket(void);
Packit Service 584ef9
int start_assoc_maintenance_thread(void);
Packit Service 584ef9
void stop_assoc_maintenance_thread(void);
Packit Service 584ef9
void assoc_start_expand(uint64_t curr_items);
Packit Service 584ef9
extern unsigned int hashpower;
Packit Service 584ef9
extern unsigned int item_lock_hashpower;