src/hotspot/share/classfile/classLoaderDataGraph.cpp
changeset 52141 de6dc206a92b
parent 52140 3a168f782e80
child 52344 55711b181dfc
equal deleted inserted replaced
52140:3a168f782e80 52141:de6dc206a92b
    46 volatile size_t ClassLoaderDataGraph::_num_array_classes = 0;
    46 volatile size_t ClassLoaderDataGraph::_num_array_classes = 0;
    47 volatile size_t ClassLoaderDataGraph::_num_instance_classes = 0;
    47 volatile size_t ClassLoaderDataGraph::_num_instance_classes = 0;
    48 
    48 
    49 void ClassLoaderDataGraph::clear_claimed_marks() {
    49 void ClassLoaderDataGraph::clear_claimed_marks() {
    50   for (ClassLoaderData* cld = _head; cld != NULL; cld = cld->next()) {
    50   for (ClassLoaderData* cld = _head; cld != NULL; cld = cld->next()) {
    51     cld->clear_claimed();
    51     cld->clear_claim();
    52   }
    52   }
    53 }
    53 }
    54 
    54 
    55 // Class iterator used by the compiler.  It gets some number of classes at
    55 // Class iterator used by the compiler.  It gets some number of classes at
    56 // a safepoint to decay invocation counters on the methods.
    56 // a safepoint to decay invocation counters on the methods.