wangzhengquan
2020-12-22 26ed48c4e616014ee760fd13d13dbdc8539c34e3
src/queue/hashtable.c
@@ -36,6 +36,12 @@
}
void hashtable_destroy(hashtable_t *hashtable) {
  SemUtil::remove( hashtable->mutex);
  SemUtil::remove( hashtable->wlock);
  SemUtil::remove( hashtable->cond);
}
static inline void *_hashtable_get(hashtable_t *hashtable, int key)
{