hotspot/src/share/vm/classfile/placeholders.hpp
changeset 33589 7cbd1b2c139b
parent 15188 3916ac601e04
child 46329 53ccc37bda19
equal deleted inserted replaced
33580:c2d95df2c54e 33589:7cbd1b2c139b
   218   bool equals(Symbol* class_name, ClassLoaderData* loader) const {
   218   bool equals(Symbol* class_name, ClassLoaderData* loader) const {
   219     return (klassname() == class_name && loader_data() == loader);
   219     return (klassname() == class_name && loader_data() == loader);
   220   }
   220   }
   221 
   221 
   222   SeenThread* actionToQueue(PlaceholderTable::classloadAction action) {
   222   SeenThread* actionToQueue(PlaceholderTable::classloadAction action) {
   223     SeenThread* queuehead;
   223     SeenThread* queuehead = NULL;
   224     switch (action) {
   224     switch (action) {
   225       case PlaceholderTable::LOAD_INSTANCE:
   225       case PlaceholderTable::LOAD_INSTANCE:
   226          queuehead = _loadInstanceThreadQ;
   226          queuehead = _loadInstanceThreadQ;
   227          break;
   227          break;
   228       case PlaceholderTable::LOAD_SUPER:
   228       case PlaceholderTable::LOAD_SUPER: