src/share/vm/prims/jvmtiEnvThreadState.hpp

changeset 3900
d2a62e0f25eb
parent 2314
f95d63e2154a
child 4037
da91efe96a93
     1.1 --- a/src/share/vm/prims/jvmtiEnvThreadState.hpp	Wed Jun 27 15:23:36 2012 +0200
     1.2 +++ b/src/share/vm/prims/jvmtiEnvThreadState.hpp	Thu Jun 28 17:03:16 2012 -0400
     1.3 @@ -76,7 +76,7 @@
     1.4  // It records what frames on a threads stack should post frame_pop events when they're exited.
     1.5  //
     1.6  
     1.7 -class JvmtiFramePops : public CHeapObj {
     1.8 +class JvmtiFramePops : public CHeapObj<mtInternal> {
     1.9   private:
    1.10    GrowableArray<int>* _pops;
    1.11  
    1.12 @@ -107,7 +107,7 @@
    1.13  // 3: Location of last executed instruction, used to filter out duplicate
    1.14  //    events due to instruction rewriting.
    1.15  
    1.16 -class JvmtiEnvThreadState : public CHeapObj {
    1.17 +class JvmtiEnvThreadState : public CHeapObj<mtInternal> {
    1.18  private:
    1.19    friend class JvmtiEnv;
    1.20    JavaThread        *_thread;

mercurial