comparison src/share/vm/gc_implementation/shared/vmGCOperations.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 8da5e203b993
comparison
equal deleted inserted replaced
6734:942bb29b20b0 6735:aed758eda82a
68 #endif /* USDT2 */ 68 #endif /* USDT2 */
69 } 69 }
70 70
71 void VM_GC_Operation::acquire_pending_list_lock() { 71 void VM_GC_Operation::acquire_pending_list_lock() {
72 // we may enter this with pending exception set 72 // we may enter this with pending exception set
73 instanceRefKlass::acquire_pending_list_lock(&_pending_list_basic_lock); 73 InstanceRefKlass::acquire_pending_list_lock(&_pending_list_basic_lock);
74 } 74 }
75 75
76 76
77 void VM_GC_Operation::release_and_notify_pending_list_lock() { 77 void VM_GC_Operation::release_and_notify_pending_list_lock() {
78 78
79 instanceRefKlass::release_and_notify_pending_list_lock(&_pending_list_basic_lock); 79 InstanceRefKlass::release_and_notify_pending_list_lock(&_pending_list_basic_lock);
80 } 80 }
81 81
82 // Allocations may fail in several threads at about the same time, 82 // Allocations may fail in several threads at about the same time,
83 // resulting in multiple gc requests. We only want to do one of them. 83 // resulting in multiple gc requests. We only want to do one of them.
84 // In case a GC locker is active and the need for a GC is already signalled, 84 // In case a GC locker is active and the need for a GC is already signalled,