8219244: NMT: Change ThreadSafepointState's allocation type from mtInternal to mtThread

Wed, 20 Feb 2019 08:31:40 -0500

author
zgu
date
Wed, 20 Feb 2019 08:31:40 -0500
changeset 9833
b00c93a7805c
parent 9831
2e9728044507
child 9834
bb1da64b0492

8219244: NMT: Change ThreadSafepointState's allocation type from mtInternal to mtThread
Reviewed-by: coleenp, minqi

src/share/vm/runtime/safepoint.hpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/runtime/safepoint.hpp	Mon Feb 17 09:29:32 2020 +0000
     1.2 +++ b/src/share/vm/runtime/safepoint.hpp	Wed Feb 20 08:31:40 2019 -0500
     1.3 @@ -190,7 +190,7 @@
     1.4  };
     1.5  
     1.6  // State class for a thread suspended at a safepoint
     1.7 -class ThreadSafepointState: public CHeapObj<mtInternal> {
     1.8 +class ThreadSafepointState: public CHeapObj<mtThread> {
     1.9   public:
    1.10    // These states are maintained by VM thread while threads are being brought
    1.11    // to a safepoint.  After SafepointSynchronize::end(), they are reset to

mercurial