< prev index next >

src/hotspot/share/services/attachListener.cpp

Print this page




  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/javaClasses.hpp"
  27 #include "classfile/systemDictionary.hpp"
  28 #include "gc/shared/vmGCOperations.hpp"
  29 #include "memory/resourceArea.hpp"
  30 #include "oops/oop.inline.hpp"
  31 #include "oops/typeArrayOop.inline.hpp"
  32 #include "prims/jvmtiExport.hpp"
  33 #include "runtime/arguments.hpp"
  34 #include "runtime/globals.hpp"

  35 #include "runtime/java.hpp"
  36 #include "runtime/javaCalls.hpp"
  37 #include "runtime/os.hpp"
  38 #include "services/attachListener.hpp"
  39 #include "services/diagnosticCommand.hpp"
  40 #include "services/heapDumper.hpp"
  41 #include "services/writeableFlags.hpp"
  42 #include "utilities/debug.hpp"
  43 #include "utilities/formatBuffer.hpp"
  44 
  45 volatile bool AttachListener::_initialized;
  46 
  47 // Implementation of "properties" command.
  48 //
  49 // Invokes VMSupport.serializePropertiesToByteArray to serialize
  50 // the system properties into a byte array.
  51 
  52 static InstanceKlass* load_and_initialize_klass(Symbol* sh, TRAPS) {
  53   Klass* k = SystemDictionary::resolve_or_fail(sh, true, CHECK_NULL);
  54   InstanceKlass* ik = InstanceKlass::cast(k);




  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/javaClasses.hpp"
  27 #include "classfile/systemDictionary.hpp"
  28 #include "gc/shared/vmGCOperations.hpp"
  29 #include "memory/resourceArea.hpp"
  30 #include "oops/oop.inline.hpp"
  31 #include "oops/typeArrayOop.inline.hpp"
  32 #include "prims/jvmtiExport.hpp"
  33 #include "runtime/arguments.hpp"
  34 #include "runtime/globals.hpp"
  35 #include "runtime/handles.inline.hpp"
  36 #include "runtime/java.hpp"
  37 #include "runtime/javaCalls.hpp"
  38 #include "runtime/os.hpp"
  39 #include "services/attachListener.hpp"
  40 #include "services/diagnosticCommand.hpp"
  41 #include "services/heapDumper.hpp"
  42 #include "services/writeableFlags.hpp"
  43 #include "utilities/debug.hpp"
  44 #include "utilities/formatBuffer.hpp"
  45 
  46 volatile bool AttachListener::_initialized;
  47 
  48 // Implementation of "properties" command.
  49 //
  50 // Invokes VMSupport.serializePropertiesToByteArray to serialize
  51 // the system properties into a byte array.
  52 
  53 static InstanceKlass* load_and_initialize_klass(Symbol* sh, TRAPS) {
  54   Klass* k = SystemDictionary::resolve_or_fail(sh, true, CHECK_NULL);
  55   InstanceKlass* ik = InstanceKlass::cast(k);


< prev index next >