hotspot/src/share/vm/prims/jvmtiEnvThreadState.cpp
changeset 13195 be27e1b6a4b9
parent 7397 5b173b4ca846
child 13728 882756847a04
equal deleted inserted replaced
13099:64752e56d721 13195:be27e1b6a4b9
    93 //
    93 //
    94 // class JvmtiFramePops - public methods
    94 // class JvmtiFramePops - public methods
    95 //
    95 //
    96 
    96 
    97 JvmtiFramePops::JvmtiFramePops() {
    97 JvmtiFramePops::JvmtiFramePops() {
    98   _pops = new (ResourceObj::C_HEAP) GrowableArray<int> (2, true);
    98   _pops = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<int> (2, true);
    99 }
    99 }
   100 
   100 
   101 JvmtiFramePops::~JvmtiFramePops() {
   101 JvmtiFramePops::~JvmtiFramePops() {
   102   // return memory to c_heap.
   102   // return memory to c_heap.
   103   delete _pops;
   103   delete _pops;