7024234: 2/3 jvmti tests fail assert(!_oops_are_stale) failed: oops are stale on Win-AMD64
authordcubed
Tue, 15 Mar 2011 06:35:10 -0700
changeset 8660 de3c4dedef24
parent 8657 5bb183666ecd
child 8661 3dc8a18ac563
7024234: 2/3 jvmti tests fail assert(!_oops_are_stale) failed: oops are stale on Win-AMD64 Summary: Move initialization of the '_instance' field to avoid race with ServiceThread start. Reviewed-by: dholmes, kamg, never, dsamersoff, ysr, coleenp, acorn
hotspot/src/share/vm/runtime/serviceThread.cpp
--- a/hotspot/src/share/vm/runtime/serviceThread.cpp	Thu Mar 10 17:44:32 2011 +0100
+++ b/hotspot/src/share/vm/runtime/serviceThread.cpp	Tue Mar 15 06:35:10 2011 -0700
@@ -70,11 +70,10 @@
     java_lang_Thread::set_priority(thread_oop(), NearMaxPriority);
     java_lang_Thread::set_daemon(thread_oop());
     thread->set_threadObj(thread_oop());
+    _instance = thread;
 
     Threads::add(thread);
     Thread::start(thread);
-
-    _instance = thread;
   }
 }