src/hotspot/share/memory/heapShared.hpp
changeset 58177 4932dce35882
parent 54927 1512d88b24c6
equal deleted inserted replaced
58176:470af058bd5f 58177:4932dce35882
   123   static bool _closed_archive_heap_region_mapped;
   123   static bool _closed_archive_heap_region_mapped;
   124   static bool _open_archive_heap_region_mapped;
   124   static bool _open_archive_heap_region_mapped;
   125   static bool _archive_heap_region_fixed;
   125   static bool _archive_heap_region_fixed;
   126 
   126 
   127   static bool oop_equals(oop const& p1, oop const& p2) {
   127   static bool oop_equals(oop const& p1, oop const& p2) {
   128     return oopDesc::equals(p1, p2);
   128     return p1 == p2;
   129   }
   129   }
   130   static unsigned oop_hash(oop const& p);
   130   static unsigned oop_hash(oop const& p);
   131 
   131 
   132   typedef ResourceHashtable<oop, oop,
   132   typedef ResourceHashtable<oop, oop,
   133       HeapShared::oop_hash,
   133       HeapShared::oop_hash,