src/share/vm/services/classLoadingService.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot-npg Cdiff src/share/vm/services/classLoadingService.cpp

src/share/vm/services/classLoadingService.cpp

Print this page

        

*** 76,85 **** --- 76,86 ---- #define DTRACE_CLASSLOAD_PROBE(type, clss, shared) #endif + #if INCLUDE_MANAGEMENT // counters for classes loaded from class files PerfCounter* ClassLoadingService::_classes_loaded_count = NULL; PerfCounter* ClassLoadingService::_classes_unloaded_count = NULL; PerfCounter* ClassLoadingService::_classbytes_loaded = NULL; PerfCounter* ClassLoadingService::_classbytes_unloaded = NULL;
*** 237,241 **** --- 238,244 ---- SystemDictionary::classes_do(&add_loaded_class); // FIXME: Exclude array klasses for now // Universe::basic_type_classes_do(&add_loaded_class); } + + #endif // INCLUDE_MANAGEMENT
src/share/vm/services/classLoadingService.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File