src/share/vm/runtime/mutexLocker.cpp

changeset 4965
6337ca4dcad8
parent 4299
f34d701e952e
child 5237
f2110083203d
     1.1 --- a/src/share/vm/runtime/mutexLocker.cpp	Fri Apr 19 16:51:27 2013 -0700
     1.2 +++ b/src/share/vm/runtime/mutexLocker.cpp	Sat Apr 20 04:07:08 2013 -0700
     1.3 @@ -46,6 +46,7 @@
     1.4  Mutex*   JNIGlobalHandle_lock         = NULL;
     1.5  Mutex*   JNIHandleBlockFreeList_lock  = NULL;
     1.6  Mutex*   JNICachedItableIndex_lock    = NULL;
     1.7 +Mutex*   MemberNameTable_lock         = NULL;
     1.8  Mutex*   JmethodIdCreation_lock       = NULL;
     1.9  Mutex*   JfieldIdCreation_lock        = NULL;
    1.10  Monitor* JNICritical_lock             = NULL;
    1.11 @@ -252,6 +253,7 @@
    1.12    def(Heap_lock                    , Monitor, nonleaf+1,   false);
    1.13    def(JfieldIdCreation_lock        , Mutex  , nonleaf+1,   true ); // jfieldID, Used in VM_Operation
    1.14    def(JNICachedItableIndex_lock    , Mutex  , nonleaf+1,   false); // Used to cache an itable index during JNI invoke
    1.15 +  def(MemberNameTable_lock         , Mutex  , nonleaf+1,   false); // Used to protect MemberNameTable
    1.16  
    1.17    def(CompiledIC_lock              , Mutex  , nonleaf+2,   false); // locks VtableStubs_lock, InlineCacheBuffer_lock
    1.18    def(CompileTaskAlloc_lock        , Mutex  , nonleaf+2,   true );

mercurial