src/share/vm/prims/jvmtiEnvThreadState.cpp

changeset 3900
d2a62e0f25eb
parent 2314
f95d63e2154a
child 4037
da91efe96a93
equal deleted inserted replaced
3877:74533f63b116 3900:d2a62e0f25eb
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;

mercurial