wangzhengquan
2020-12-22 28f9f739fad7944f64f7df2b8af046f57d50eb8b
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)
{