< prev index next >

src/hotspot/share/memory/metaspaceClosure.hpp

Print this page

@@ -27,11 +27,11 @@
 
 #include "logging/log.hpp"
 #include "memory/allocation.hpp"
 #include "oops/array.hpp"
 #include "utilities/growableArray.hpp"
-#include "utilities/hashtable.hpp"
+#include "utilities/hashtable.inline.hpp"
 
 // The metadata hierarchy is separate from the oop hierarchy
   class MetaspaceObj;        // no C++ vtable
 //class   Array;             // no C++ vtable
   class   Annotations;       // no C++ vtable

@@ -265,9 +265,9 @@
   // Gets called the first time we discover an object.
   virtual void do_unique_ref(Ref* ref, bool read_only) = 0;
   UniqueMetaspaceClosure() : _has_been_visited(15889) {}
 
 private:
-  KVHashtable<address, bool> _has_been_visited;
+  KVHashtable<address, bool, mtInternal> _has_been_visited;
 };
 
 #endif // SHARE_VM_MEMORY_METASPACE_ITERATOR_HPP
< prev index next >