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