src/share/vm/services/classLoadingService.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/services/classLoadingService.cpp	Wed May 27 10:37:45 2015
--- new/src/share/vm/services/classLoadingService.cpp	Wed May 27 10:37:45 2015

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 2003, 2015, 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.
*** 179,200 **** --- 179,200 ---- bool ClassLoadingService::set_verbose(bool verbose) { MutexLocker m(Management_lock); // verbose will be set to the previous value ! bool succeed = (CommandLineFlags::boolAtPut((char*)"TraceClassLoading", &verbose, Flag::MANAGEMENT) == Flag::SUCCESS); assert(succeed, "Setting TraceClassLoading flag fails"); reset_trace_class_unloading(); return verbose; } // Caller to this function must own Management_lock void ClassLoadingService::reset_trace_class_unloading() { assert(Management_lock->owned_by_self(), "Must own the Management_lock"); bool value = MemoryService::get_verbose() || ClassLoadingService::get_verbose(); ! bool succeed = (CommandLineFlags::boolAtPut((char*)"TraceClassUnloading", &value, Flag::MANAGEMENT) == Flag::SUCCESS); assert(succeed, "Setting TraceClassUnLoading flag fails"); } GrowableArray<KlassHandle>* LoadedClassesEnumerator::_loaded_classes = NULL; Thread* LoadedClassesEnumerator::_current_thread = NULL;

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