src/share/vm/services/classLoadingService.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/services/classLoadingService.hpp	Thu Jan 28 14:14:19 2016
--- new/src/share/vm/services/classLoadingService.hpp	Thu Jan 28 14:14:18 2016

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 23,32 **** --- 23,33 ---- */ #ifndef SHARE_VM_SERVICES_CLASSLOADINGSERVICE_HPP #define SHARE_VM_SERVICES_CLASSLOADINGSERVICE_HPP + #include "logging/log.hpp" #include "runtime/handles.hpp" #include "runtime/perfData.hpp" #include "utilities/growableArray.hpp" #include "utilities/macros.hpp"
*** 52,62 **** --- 53,63 ---- static size_t compute_class_size(InstanceKlass* k); public: static void init(); ! static bool get_verbose() { return TraceClassLoading; } ! static bool get_verbose() { return log_is_enabled(Info, classload); } static bool set_verbose(bool verbose); static void reset_trace_class_unloading() NOT_MANAGEMENT_RETURN; static jlong loaded_class_count() { return _classes_loaded_count->get_value() + _shared_classes_loaded_count->get_value();

src/share/vm/services/classLoadingService.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File