hotspot/src/share/vm/runtime/mutexLocker.cpp
changeset 24094 5dbf1f44de18
parent 23472 35e93890ed88
child 24839 109aa8e66829
--- a/hotspot/src/share/vm/runtime/mutexLocker.cpp	Fri Apr 11 11:00:12 2014 +0200
+++ b/hotspot/src/share/vm/runtime/mutexLocker.cpp	Fri Apr 11 12:29:24 2014 +0200
@@ -69,7 +69,7 @@
 Monitor* SerializePage_lock           = NULL;
 Monitor* Threads_lock                 = NULL;
 Monitor* CGC_lock                     = NULL;
-Mutex*   STS_init_lock                = NULL;
+Monitor* STS_lock                     = NULL;
 Monitor* SLT_lock                     = NULL;
 Monitor* iCMS_lock                    = NULL;
 Monitor* FullGCCount_lock             = NULL;
@@ -173,7 +173,7 @@
   def(tty_lock                     , Mutex  , event,       true ); // allow to lock in VM
 
   def(CGC_lock                   , Monitor, special,     true ); // coordinate between fore- and background GC
-  def(STS_init_lock              , Mutex,   leaf,        true );
+  def(STS_lock                   , Monitor, leaf,        true );
   if (UseConcMarkSweepGC) {
     def(iCMS_lock                  , Monitor, special,     true ); // CMS incremental mode start/stop notification
   }