comparison src/share/vm/runtime/mutexLocker.cpp @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 4e12cac4e51e 595c0f60d50d
children 2a69cbe850a8
comparison
equal deleted inserted replaced
17606:45d7b2c7029d 18041:52b4284cb496
1 /* 1 /*
2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
56 Mutex* AdapterHandlerLibrary_lock = NULL; 56 Mutex* AdapterHandlerLibrary_lock = NULL;
57 Mutex* SignatureHandlerLibrary_lock = NULL; 57 Mutex* SignatureHandlerLibrary_lock = NULL;
58 Mutex* VtableStubs_lock = NULL; 58 Mutex* VtableStubs_lock = NULL;
59 Mutex* SymbolTable_lock = NULL; 59 Mutex* SymbolTable_lock = NULL;
60 Mutex* StringTable_lock = NULL; 60 Mutex* StringTable_lock = NULL;
61 Monitor* StringDedupQueue_lock = NULL;
62 Mutex* StringDedupTable_lock = NULL;
61 Mutex* CodeCache_lock = NULL; 63 Mutex* CodeCache_lock = NULL;
62 Mutex* MethodData_lock = NULL; 64 Mutex* MethodData_lock = NULL;
63 Mutex* RetData_lock = NULL; 65 Mutex* RetData_lock = NULL;
64 Monitor* VMOperationQueue_lock = NULL; 66 Monitor* VMOperationQueue_lock = NULL;
65 Monitor* VMOperationRequest_lock = NULL; 67 Monitor* VMOperationRequest_lock = NULL;
194 def(OldSets_lock , Mutex , leaf , true ); 196 def(OldSets_lock , Mutex , leaf , true );
195 def(RootRegionScan_lock , Monitor, leaf , true ); 197 def(RootRegionScan_lock , Monitor, leaf , true );
196 def(MMUTracker_lock , Mutex , leaf , true ); 198 def(MMUTracker_lock , Mutex , leaf , true );
197 def(HotCardCache_lock , Mutex , special , true ); 199 def(HotCardCache_lock , Mutex , special , true );
198 def(EvacFailureStack_lock , Mutex , nonleaf , true ); 200 def(EvacFailureStack_lock , Mutex , nonleaf , true );
201
202 def(StringDedupQueue_lock , Monitor, leaf, true );
203 def(StringDedupTable_lock , Mutex , leaf, true );
199 } 204 }
200 def(ParGCRareEvent_lock , Mutex , leaf , true ); 205 def(ParGCRareEvent_lock , Mutex , leaf , true );
201 def(DerivedPointerTableGC_lock , Mutex, leaf, true ); 206 def(DerivedPointerTableGC_lock , Mutex, leaf, true );
202 def(CodeCache_lock , Mutex , special, true ); 207 def(CodeCache_lock , Mutex , special, true );
203 def(Interrupt_lock , Monitor, special, true ); // used for interrupt processing 208 def(Interrupt_lock , Monitor, special, true ); // used for interrupt processing