< prev index next >

src/hotspot/share/prims/jvmtiImpl.cpp

Print this page




  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/systemDictionary.hpp"
  27 #include "interpreter/interpreter.hpp"
  28 #include "interpreter/oopMapCache.hpp"
  29 #include "jvmtifiles/jvmtiEnv.hpp"
  30 #include "logging/log.hpp"
  31 #include "logging/logStream.hpp"
  32 #include "memory/allocation.inline.hpp"
  33 #include "memory/resourceArea.hpp"
  34 #include "oops/instanceKlass.hpp"
  35 #include "oops/oop.inline.hpp"
  36 #include "prims/jvmtiAgentThread.hpp"
  37 #include "prims/jvmtiEventController.inline.hpp"
  38 #include "prims/jvmtiImpl.hpp"
  39 #include "prims/jvmtiRedefineClasses.hpp"
  40 #include "runtime/atomic.hpp"
  41 #include "runtime/deoptimization.hpp"
  42 #include "runtime/handles.hpp"
  43 #include "runtime/handles.inline.hpp"
  44 #include "runtime/interfaceSupport.hpp"
  45 #include "runtime/javaCalls.hpp"
  46 #include "runtime/os.hpp"
  47 #include "runtime/serviceThread.hpp"
  48 #include "runtime/signature.hpp"
  49 #include "runtime/thread.inline.hpp"
  50 #include "runtime/threadSMR.hpp"
  51 #include "runtime/vframe.hpp"
  52 #include "runtime/vframe_hp.hpp"
  53 #include "runtime/vm_operations.hpp"
  54 #include "utilities/exceptions.hpp"
  55 
  56 //
  57 // class JvmtiAgentThread
  58 //
  59 // JavaThread used to wrap a thread started by an agent
  60 // using the JVMTI method RunAgentThread.
  61 //
  62 
  63 JvmtiAgentThread::JvmtiAgentThread(JvmtiEnv* env, jvmtiStartFunction start_fn, const void *start_arg)
  64     : JavaThread(start_function_wrapper) {




  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/systemDictionary.hpp"
  27 #include "interpreter/interpreter.hpp"
  28 #include "interpreter/oopMapCache.hpp"
  29 #include "jvmtifiles/jvmtiEnv.hpp"
  30 #include "logging/log.hpp"
  31 #include "logging/logStream.hpp"
  32 #include "memory/allocation.inline.hpp"
  33 #include "memory/resourceArea.hpp"
  34 #include "oops/instanceKlass.hpp"
  35 #include "oops/oop.inline.hpp"
  36 #include "prims/jvmtiAgentThread.hpp"
  37 #include "prims/jvmtiEventController.inline.hpp"
  38 #include "prims/jvmtiImpl.hpp"
  39 #include "prims/jvmtiRedefineClasses.hpp"
  40 #include "runtime/atomic.hpp"
  41 #include "runtime/deoptimization.hpp"
  42 #include "runtime/handles.hpp"
  43 #include "runtime/handles.inline.hpp"
  44 #include "runtime/interfaceSupport.inline.hpp"
  45 #include "runtime/javaCalls.hpp"
  46 #include "runtime/os.hpp"
  47 #include "runtime/serviceThread.hpp"
  48 #include "runtime/signature.hpp"
  49 #include "runtime/thread.inline.hpp"
  50 #include "runtime/threadSMR.hpp"
  51 #include "runtime/vframe.hpp"
  52 #include "runtime/vframe_hp.hpp"
  53 #include "runtime/vm_operations.hpp"
  54 #include "utilities/exceptions.hpp"
  55 
  56 //
  57 // class JvmtiAgentThread
  58 //
  59 // JavaThread used to wrap a thread started by an agent
  60 // using the JVMTI method RunAgentThread.
  61 //
  62 
  63 JvmtiAgentThread::JvmtiAgentThread(JvmtiEnv* env, jvmtiStartFunction start_fn, const void *start_arg)
  64     : JavaThread(start_function_wrapper) {


< prev index next >