hotspot/src/share/vm/runtime/thread.cpp
changeset 225 6258c2e3adfd
parent 191 314312979e7a
parent 222 3d1795325749
child 235 735f15bdea80
--- a/hotspot/src/share/vm/runtime/thread.cpp	Thu Mar 13 05:40:44 2008 -0700
+++ b/hotspot/src/share/vm/runtime/thread.cpp	Thu Mar 13 14:17:48 2008 -0700
@@ -1317,10 +1317,6 @@
   ThreadSafepointState::destroy(this);
   if (_thread_profiler != NULL) delete _thread_profiler;
   if (_thread_stat != NULL) delete _thread_stat;
-
-  if (jvmti_thread_state() != NULL) {
-    JvmtiExport::cleanup_thread(this);
-  }
 }
 
 
@@ -1571,6 +1567,10 @@
     tlab().make_parsable(true);  // retire TLAB
   }
 
+  if (jvmti_thread_state() != NULL) {
+    JvmtiExport::cleanup_thread(this);
+  }
+
   // Remove from list of active threads list, and notify VM thread if we are the last non-daemon thread
   Threads::remove(this);
 }