comparison src/share/vm/gc_implementation/shared/concurrentGCThread.cpp @ 6735:aed758eda82a

7195833: NPG: Rename instanceClassLoaderKlass, instanceRefKlass and instanceMirrorKlass Summary: Simple renaming to be consistent with instanceKlass->InstanceKlass renaming Reviewed-by: stefank, jmasa
author coleenp
date Fri, 07 Sep 2012 12:04:16 -0400
parents da91efe96a93
children 63a4eb8bcd23 581e70386ec9
comparison
equal deleted inserted replaced
6734:942bb29b20b0 6735:aed758eda82a
253 } 253 }
254 msg = _buffer; 254 msg = _buffer;
255 } 255 }
256 switch(msg) { 256 switch(msg) {
257 case acquirePLL: { 257 case acquirePLL: {
258 instanceRefKlass::acquire_pending_list_lock(&pll_basic_lock); 258 InstanceRefKlass::acquire_pending_list_lock(&pll_basic_lock);
259 debug_only(owned++;) 259 debug_only(owned++;)
260 break; 260 break;
261 } 261 }
262 case releaseAndNotifyPLL: { 262 case releaseAndNotifyPLL: {
263 assert(owned > 0, "Don't have PLL"); 263 assert(owned > 0, "Don't have PLL");
264 instanceRefKlass::release_and_notify_pending_list_lock(&pll_basic_lock); 264 InstanceRefKlass::release_and_notify_pending_list_lock(&pll_basic_lock);
265 debug_only(owned--;) 265 debug_only(owned--;)
266 break; 266 break;
267 } 267 }
268 case empty: 268 case empty:
269 default: { 269 default: {