src/share/vm/prims/jvmtiExtensions.cpp

changeset 3900
d2a62e0f25eb
parent 2314
f95d63e2154a
child 4153
b9a9ed0f8eeb
     1.1 --- a/src/share/vm/prims/jvmtiExtensions.cpp	Wed Jun 27 15:23:36 2012 +0200
     1.2 +++ b/src/share/vm/prims/jvmtiExtensions.cpp	Thu Jun 28 17:03:16 2012 -0400
     1.3 @@ -49,8 +49,8 @@
     1.4  // event. The function and the event are registered here.
     1.5  //
     1.6  void JvmtiExtensions::register_extensions() {
     1.7 -  _ext_functions = new (ResourceObj::C_HEAP) GrowableArray<jvmtiExtensionFunctionInfo*>(1,true);
     1.8 -  _ext_events = new (ResourceObj::C_HEAP) GrowableArray<jvmtiExtensionEventInfo*>(1,true);
     1.9 +  _ext_functions = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<jvmtiExtensionFunctionInfo*>(1,true);
    1.10 +  _ext_events = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<jvmtiExtensionEventInfo*>(1,true);
    1.11  
    1.12    // register our extension function
    1.13    static jvmtiParamInfo func_params[] = {

mercurial