hotspot/src/share/vm/prims/jvmtiExport.hpp
changeset 13195 be27e1b6a4b9
parent 12114 9a825a536095
child 13728 882756847a04
equal deleted inserted replaced
13099:64752e56d721 13195:be27e1b6a4b9
   348   static char** get_all_native_method_prefixes(int* count_ptr);
   348   static char** get_all_native_method_prefixes(int* count_ptr);
   349 };
   349 };
   350 
   350 
   351 // Support class used by JvmtiDynamicCodeEventCollector and others. It
   351 // Support class used by JvmtiDynamicCodeEventCollector and others. It
   352 // describes a single code blob by name and address range.
   352 // describes a single code blob by name and address range.
   353 class JvmtiCodeBlobDesc : public CHeapObj {
   353 class JvmtiCodeBlobDesc : public CHeapObj<mtInternal> {
   354  private:
   354  private:
   355   char _name[64];
   355   char _name[64];
   356   address _code_begin;
   356   address _code_begin;
   357   address _code_end;
   357   address _code_end;
   358 
   358