queue/hashtable.h
@@ -9,6 +9,10 @@ typedef struct hashtable_t { struct tailq_header_t* array[MAPSIZE]; int mutex; int wlock; int cond; size_t readcnt; } hashtable_t; @@ -20,4 +24,6 @@ void hashtable_printall(hashtable_t *hashtable); int hashtable_alloc_key(hashtable_t *hashtable); #endif