diff -r 9f059abe8cf2 -r f69a5d43dc19 src/share/vm/memory/freeBlockDictionary.cpp --- a/src/share/vm/memory/freeBlockDictionary.cpp Thu Mar 29 19:46:24 2012 -0700 +++ b/src/share/vm/memory/freeBlockDictionary.cpp Wed Apr 25 09:55:55 2012 -0700 @@ -52,8 +52,8 @@ template void FreeBlockDictionary::verify_par_locked() const { #ifdef ASSERT if (ParallelGCThreads > 0) { - Thread* myThread = Thread::current(); - if (myThread->is_GC_task_thread()) { + Thread* my_thread = Thread::current(); + if (my_thread->is_GC_task_thread()) { assert(par_lock() != NULL, "Should be using locking?"); assert_lock_strong(par_lock()); }