8292680: Convert Dictionary to ConcurrentHashTable

Reviewed-by: rehn, hseigel
This commit is contained in:
Coleen Phillimore 2022-08-25 19:02:52 +00:00
parent 2fe0ce0148
commit 4f50316a1a
30 changed files with 436 additions and 356 deletions

View file

@ -80,12 +80,6 @@ class ThreadIdTableConfig : public AllStatic {
}
};
static size_t ceil_log2(size_t val) {
size_t ret;
for (ret = 1; ((size_t)1 << ret) < val; ++ret);
return ret;
}
// Lazily creates the table and populates it with the given
// thread list
void ThreadIdTable::lazy_initialize(const ThreadsList *threads) {