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