src/share/vm/runtime/mutexLocker.cpp

changeset 7653
b6a1bf5222c5
parent 7547
f46871c6c063
child 7689
cff166f839f6
equal deleted inserted replaced
7652:ae374055ebce 7653:b6a1bf5222c5
1 /* 1 /*
2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2015, 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.
117 Mutex* FreeList_lock = NULL; 117 Mutex* FreeList_lock = NULL;
118 Monitor* SecondaryFreeList_lock = NULL; 118 Monitor* SecondaryFreeList_lock = NULL;
119 Mutex* OldSets_lock = NULL; 119 Mutex* OldSets_lock = NULL;
120 Monitor* RootRegionScan_lock = NULL; 120 Monitor* RootRegionScan_lock = NULL;
121 Mutex* MMUTracker_lock = NULL; 121 Mutex* MMUTracker_lock = NULL;
122 Mutex* HotCardCache_lock = NULL;
123 122
124 Monitor* GCTaskManager_lock = NULL; 123 Monitor* GCTaskManager_lock = NULL;
125 124
126 Mutex* Management_lock = NULL; 125 Mutex* Management_lock = NULL;
127 Monitor* Service_lock = NULL; 126 Monitor* Service_lock = NULL;
198 def(FreeList_lock , Mutex, leaf , true ); 197 def(FreeList_lock , Mutex, leaf , true );
199 def(SecondaryFreeList_lock , Monitor, leaf , true ); 198 def(SecondaryFreeList_lock , Monitor, leaf , true );
200 def(OldSets_lock , Mutex , leaf , true ); 199 def(OldSets_lock , Mutex , leaf , true );
201 def(RootRegionScan_lock , Monitor, leaf , true ); 200 def(RootRegionScan_lock , Monitor, leaf , true );
202 def(MMUTracker_lock , Mutex , leaf , true ); 201 def(MMUTracker_lock , Mutex , leaf , true );
203 def(HotCardCache_lock , Mutex , special , true );
204 def(EvacFailureStack_lock , Mutex , nonleaf , true ); 202 def(EvacFailureStack_lock , Mutex , nonleaf , true );
205 203
206 def(StringDedupQueue_lock , Monitor, leaf, true ); 204 def(StringDedupQueue_lock , Monitor, leaf, true );
207 def(StringDedupTable_lock , Mutex , leaf, true ); 205 def(StringDedupTable_lock , Mutex , leaf, true );
208 } 206 }

mercurial