hotspot/src/share/vm/classfile/systemDictionary.cpp
changeset 13195 be27e1b6a4b9
parent 12772 d317e5e08194
child 13286 b8b0898d5f3a
equal deleted inserted replaced
13099:64752e56d721 13195:be27e1b6a4b9
  1166 
  1166 
  1167   return k();
  1167   return k();
  1168 }
  1168 }
  1169 
  1169 
  1170 
  1170 
  1171 void SystemDictionary::set_shared_dictionary(HashtableBucket* t, int length,
  1171 void SystemDictionary::set_shared_dictionary(HashtableBucket<mtClass>* t, int length,
  1172                                              int number_of_entries) {
  1172                                              int number_of_entries) {
  1173   assert(length == _nof_buckets * sizeof(HashtableBucket),
  1173   assert(length == _nof_buckets * sizeof(HashtableBucket<mtClass>),
  1174          "bad shared dictionary size.");
  1174          "bad shared dictionary size.");
  1175   _shared_dictionary = new Dictionary(_nof_buckets, t, number_of_entries);
  1175   _shared_dictionary = new Dictionary(_nof_buckets, t, number_of_entries);
  1176 }
  1176 }
  1177 
  1177 
  1178 
  1178