# HG changeset patch # User apangin # Date 1220221494 25200 # Node ID 23c6240101a05c718023813db5393615357ca776 # Parent 58eb97387b90e22ab71b0b18e56469fd942c991f# Parent b33eef719520f096c6bb469c85c963e8852c8a5f Merge diff -r 58eb97387b90 -r 23c6240101a0 src/share/vm/runtime/thread.cpp --- a/src/share/vm/runtime/thread.cpp Mon Aug 25 12:16:34 2008 -0700 +++ b/src/share/vm/runtime/thread.cpp Sun Aug 31 15:24:54 2008 -0700 @@ -2756,13 +2756,17 @@ // For now, just manually iterate through them. tc->do_thread(VMThread::vm_thread()); Universe::heap()->gc_threads_do(tc); - { - // Grab the Terminator_lock to prevent watcher_thread from being terminated. - MutexLockerEx mu(Terminator_lock, Mutex::_no_safepoint_check_flag); - WatcherThread *wt = WatcherThread::watcher_thread(); - if (wt != NULL) - tc->do_thread(wt); - } + WatcherThread *wt = WatcherThread::watcher_thread(); + // Strictly speaking, the following NULL check isn't sufficient to make sure + // the data for WatcherThread is still valid upon being examined. However, + // considering that WatchThread terminates when the VM is on the way to + // exit at safepoint, the chance of the above is extremely small. The right + // way to prevent termination of WatcherThread would be to acquire + // Terminator_lock, but we can't do that without violating the lock rank + // checking in some cases. + if (wt != NULL) + tc->do_thread(wt); + // If CompilerThreads ever become non-JavaThreads, add them here }