src/queue/hashtable.c
@@ -275,8 +275,6 @@ } std::set<int> * hashtable_keyset(hashtable_t *hashtable) { std::set<int> *keyset = new std::set<int>; tailq_entry_t *item; @@ -302,7 +300,7 @@ while(_hashtable_get(hashtable, key) != NULL) { key++; } // 占用key _hashtable_put(hashtable, key, (void *)1); SemUtil::inc(hashtable->wlock); return key;