< prev index next >

src/hotspot/share/oops/klass.cpp

Print this page

        

*** 92,101 **** --- 92,105 ---- t = t->super(); } return false; } + void Klass::release_C_heap_structures() { + if (_name != NULL) _name->decrement_refcount(); + } + bool Klass::search_secondary_supers(Klass* k) const { // Put some extra logic here out-of-line, before the search proper. // This cuts down the size of the inline method. // This is necessary, since I am never in my own secondary_super list.
< prev index next >