hotspot/src/share/vm/gc/shared/gcLocker.inline.hpp
changeset 35492 c8c0273e6b91
parent 30764 fec48bf5a827
--- a/hotspot/src/share/vm/gc/shared/gcLocker.inline.hpp	Thu Jan 14 09:18:11 2016 +0100
+++ b/hotspot/src/share/vm/gc/shared/gcLocker.inline.hpp	Thu Jan 14 13:26:19 2016 +0100
@@ -27,7 +27,7 @@
 
 #include "gc/shared/gcLocker.hpp"
 
-inline void GC_locker::lock_critical(JavaThread* thread) {
+inline void GCLocker::lock_critical(JavaThread* thread) {
   if (!thread->in_critical()) {
     if (needs_gc()) {
       // jni_lock call calls enter_critical under the lock so that the
@@ -40,7 +40,7 @@
   thread->enter_critical();
 }
 
-inline void GC_locker::unlock_critical(JavaThread* thread) {
+inline void GCLocker::unlock_critical(JavaThread* thread) {
   if (thread->in_last_critical()) {
     if (needs_gc()) {
       // jni_unlock call calls exit_critical under the lock so that