diff src/share/vm/memory/freeBlockDictionary.cpp @ 6028:f69a5d43dc19

7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary* Summary: Fix naming style to be consistent with the predominant hotspot style. Reviewed-by: ysr, brutisso
author jmasa
date Wed, 25 Apr 2012 09:55:55 -0700
parents 9f059abe8cf2
children b9a9ed0f8eeb
line wrap: on
line diff
--- 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 <class Chunk> void FreeBlockDictionary<Chunk>::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());
     }