8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25 #ifndef SHARE_RUNTIME_MUTEXLOCKER_HPP
26 #define SHARE_RUNTIME_MUTEXLOCKER_HPP
27
28 #include "memory/allocation.hpp"
29 #include "runtime/flags/flagSetting.hpp"
30 #include "runtime/mutex.hpp"
31
32 class Thread;
33
34 // Mutexes used in the VM.
35
36 extern Mutex* NMethodState_lock; // a lock used to guard a compiled method state
37 extern Monitor* SystemDictionary_lock; // a lock on the system dictionary
38 extern Mutex* InvokeMethodTypeTable_lock;
39 extern Monitor* InvokeMethodIntrinsicTable_lock;
40 extern Mutex* SharedDictionary_lock; // a lock on the CDS shared dictionary
41 extern Monitor* ClassInitError_lock; // a lock on the class initialization error table
42 extern Mutex* Module_lock; // a lock on module and package related data structures
43 extern Mutex* CompiledIC_lock; // a lock used to guard compiled IC patching and access
44 extern Mutex* VMStatistic_lock; // a lock used to guard statistics count increment
45 extern Mutex* JmethodIdCreation_lock; // a lock on creating JNI method identifiers
46 extern Mutex* JfieldIdCreation_lock; // a lock on creating JNI static field identifiers
47 extern Monitor* JNICritical_lock; // a lock used while entering and exiting JNI critical regions, allows GC to sometimes get in
48 extern Mutex* JvmtiThreadState_lock; // a lock on modification of JVMTI thread data
49 extern Monitor* EscapeBarrier_lock; // a lock to sync reallocating and relocking objects because of JVMTI access
50 extern Monitor* JvmtiVTMSTransition_lock; // a lock for Virtual Thread Mount State transition (VTMS transition) management
63 extern Mutex* RetData_lock; // a lock on installation of RetData inside method data
64 extern Monitor* VMOperation_lock; // a lock on queue of vm_operations waiting to execute
65 extern Monitor* ThreadsLockThrottle_lock; // used by Thread start/exit to reduce competition for Threads_lock,
66 // so a VM thread calling a safepoint is prioritized
67 extern Monitor* Threads_lock; // a lock on the Threads table of active Java threads
68 // (also used by Safepoints too to block threads creation/destruction)
69 extern Mutex* NonJavaThreadsList_lock; // a lock on the NonJavaThreads list
70 extern Mutex* NonJavaThreadsListSync_lock; // a lock for NonJavaThreads list synchronization
71 extern Monitor* CGC_lock; // used for coordination between
72 // fore- & background GC threads.
73 extern Monitor* STS_lock; // used for joining/leaving SuspendibleThreadSet.
74 extern Monitor* G1OldGCCount_lock; // in support of "concurrent" full gc
75 extern Mutex* G1RareEvent_lock; // Synchronizes (rare) parallel GC operations.
76 extern Mutex* G1DetachedRefinementStats_lock; // Lock protecting detached refinement stats
77 extern Mutex* MarkStackFreeList_lock; // Protects access to the global mark stack free list.
78 extern Mutex* MarkStackChunkList_lock; // Protects access to the global mark stack chunk list.
79 extern Mutex* MonitoringSupport_lock; // Protects updates to the serviceability memory pools and allocated memory high water mark.
80 extern Monitor* ConcurrentGCBreakpoints_lock; // Protects concurrent GC breakpoint management
81 extern Mutex* Compile_lock; // a lock held when Compilation is updating code (used to block CodeCache traversal, CHA updates, etc)
82 extern Monitor* MethodCompileQueue_lock; // a lock held when method compilations are enqueued, dequeued
83 extern Monitor* CompileThread_lock; // a lock held by compile threads during compilation system initialization
84 extern Monitor* Compilation_lock; // a lock used to pause compilation
85 extern Mutex* CompileTaskAlloc_lock; // a lock held when CompileTasks are allocated
86 extern Mutex* CompileStatistics_lock; // a lock held when updating compilation statistics
87 extern Mutex* DirectivesStack_lock; // a lock held when mutating the dirstack and ref counting directives
88 extern Monitor* Terminator_lock; // a lock used to guard termination of the vm
89 extern Monitor* InitCompleted_lock; // a lock used to signal threads waiting on init completed
90 extern Monitor* BeforeExit_lock; // a lock used to guard cleanups and shutdown hooks
91 extern Monitor* Notify_lock; // a lock used to synchronize the start-up of the vm
92 extern Mutex* ExceptionCache_lock; // a lock used to synchronize exception cache updates
93
94 #ifndef PRODUCT
95 extern Mutex* FullGCALot_lock; // a lock to make FullGCALot MT safe
96 #endif // PRODUCT
97
98 extern Mutex* RawMonitor_lock;
99 extern Mutex* PerfDataMemAlloc_lock; // a lock on the allocator for PerfData memory for performance data
100 extern Mutex* PerfDataManager_lock; // a long on access to PerfDataManager resources
101
102 extern Mutex* FreeList_lock; // protects the free region list during safepoints
103 extern Mutex* OldSets_lock; // protects the old region sets
104 extern Mutex* Uncommit_lock; // protects the uncommit list when not at safepoints
111 extern Monitor* PeriodicTask_lock; // protects the periodic task structure
112 extern Monitor* RedefineClasses_lock; // locks classes from parallel redefinition
113 extern Mutex* Verify_lock; // synchronize initialization of verify library
114 extern Monitor* ThreadsSMRDelete_lock; // Used by ThreadsSMRSupport to take pressure off the Threads_lock
115 extern Mutex* ThreadIdTableCreate_lock; // Used by ThreadIdTable to lazily create the thread id table
116 extern Mutex* SharedDecoder_lock; // serializes access to the decoder during normal (not error reporting) use
117 extern Mutex* DCmdFactory_lock; // serialize access to DCmdFactory information
118 extern Mutex* NMTQuery_lock; // serialize NMT Dcmd queries
119 extern Mutex* NMTCompilationCostHistory_lock; // guards NMT compilation cost history
120 #if INCLUDE_CDS
121 #if INCLUDE_JVMTI
122 extern Mutex* CDSClassFileStream_lock; // FileMapInfo::open_stream_for_jvmti
123 #endif
124 extern Mutex* DumpTimeTable_lock; // SystemDictionaryShared::_dumptime_table
125 extern Mutex* CDSLambda_lock; // SystemDictionaryShared::get_shared_lambda_proxy_class
126 extern Mutex* DumpRegion_lock; // Symbol::operator new(size_t sz, int len)
127 extern Mutex* ClassListFile_lock; // ClassListWriter()
128 extern Mutex* UnregisteredClassesTable_lock; // UnregisteredClassesTableTable
129 extern Mutex* LambdaFormInvokers_lock; // Protecting LambdaFormInvokers::_lambdaform_lines
130 extern Mutex* ScratchObjects_lock; // Protecting _scratch_xxx_table in heapShared.cpp
131 #endif // INCLUDE_CDS
132 #if INCLUDE_JFR
133 extern Mutex* JfrStacktrace_lock; // used to guard access to the JFR stacktrace table
134 extern Monitor* JfrMsg_lock; // protects JFR messaging
135 extern Mutex* JfrBuffer_lock; // protects JFR buffer operations
136 extern Monitor* JfrThreadSampler_lock; // used to suspend/resume JFR thread sampler
137 #endif
138
139 extern Mutex* Metaspace_lock; // protects Metaspace virtualspace and chunk expansions
140 extern Monitor* MetaspaceCritical_lock; // synchronizes failed metaspace allocations that risk throwing metaspace OOM
141 extern Mutex* ClassLoaderDataGraph_lock; // protects CLDG list, needed for concurrent unloading
142
143
144 extern Mutex* CodeHeapStateAnalytics_lock; // lock print functions against concurrent analyze functions.
145 // Only used locally in PrintCodeCacheLayout processing.
146
147 extern Mutex* ExternalsRecorder_lock; // used to guard access to the external addresses table
148
149 extern Monitor* ContinuationRelativize_lock;
150
173
174 // Print all mutexes/monitors that are currently owned by a thread; called
175 // by fatal error handler.
176 void print_owned_locks_on_error(outputStream* st);
177 void print_lock_ranks(outputStream* st);
178
179 // for debugging: check that we're already owning this lock (or are at a safepoint / handshake)
180 #ifdef ASSERT
181 void assert_locked_or_safepoint(const Mutex* lock);
182 void assert_lock_strong(const Mutex* lock);
183 #else
184 #define assert_locked_or_safepoint(lock)
185 #define assert_lock_strong(lock)
186 #endif
187
188 // Internal implementation. Skips on null Mutex.
189 // Subclasses enforce stronger invariants.
190 class MutexLockerImpl: public StackObj {
191 protected:
192 Mutex* _mutex;
193
194 MutexLockerImpl(Mutex* mutex, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
195 _mutex(mutex) {
196 bool no_safepoint_check = flag == Mutex::_no_safepoint_check_flag;
197 if (_mutex != nullptr) {
198 if (no_safepoint_check) {
199 _mutex->lock_without_safepoint_check();
200 } else {
201 _mutex->lock();
202 }
203 }
204 }
205
206 MutexLockerImpl(Thread* thread, Mutex* mutex, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
207 _mutex(mutex) {
208 bool no_safepoint_check = flag == Mutex::_no_safepoint_check_flag;
209 if (_mutex != nullptr) {
210 if (no_safepoint_check) {
211 _mutex->lock_without_safepoint_check(thread);
212 } else {
213 _mutex->lock(thread);
214 }
215 }
216 }
217
218 ~MutexLockerImpl() {
219 if (_mutex != nullptr) {
220 assert_lock_strong(_mutex);
221 _mutex->unlock();
222 }
223 }
224
225 public:
226 static void post_initialize();
227 };
228
229 // Simplest mutex locker.
230 // Does not allow null mutexes.
231 class MutexLocker: public MutexLockerImpl {
232 public:
233 MutexLocker(Mutex* mutex, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
234 MutexLockerImpl(mutex, flag) {
235 assert(mutex != nullptr, "null mutex not allowed");
236 }
237
238 MutexLocker(Thread* thread, Mutex* mutex, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
239 MutexLockerImpl(thread, mutex, flag) {
240 assert(mutex != nullptr, "null mutex not allowed");
241 }
242 };
243
244 // Conditional mutex locker.
245 // Like MutexLocker above, but only locks when condition is true.
246 class ConditionalMutexLocker: public MutexLockerImpl {
|
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25 #ifndef SHARE_RUNTIME_MUTEXLOCKER_HPP
26 #define SHARE_RUNTIME_MUTEXLOCKER_HPP
27
28 #include "logging/log.hpp"
29 #include "memory/allocation.hpp"
30 #include "runtime/flags/flagSetting.hpp"
31 #include "runtime/mutex.hpp"
32 #include "runtime/perfData.hpp"
33 #include "runtime/thread.hpp"
34
35 class Thread;
36
37 // Mutexes used in the VM.
38
39 extern Mutex* NMethodState_lock; // a lock used to guard a compiled method state
40 extern Monitor* SystemDictionary_lock; // a lock on the system dictionary
41 extern Mutex* InvokeMethodTypeTable_lock;
42 extern Monitor* InvokeMethodIntrinsicTable_lock;
43 extern Mutex* SharedDictionary_lock; // a lock on the CDS shared dictionary
44 extern Monitor* ClassInitError_lock; // a lock on the class initialization error table
45 extern Mutex* Module_lock; // a lock on module and package related data structures
46 extern Mutex* CompiledIC_lock; // a lock used to guard compiled IC patching and access
47 extern Mutex* VMStatistic_lock; // a lock used to guard statistics count increment
48 extern Mutex* JmethodIdCreation_lock; // a lock on creating JNI method identifiers
49 extern Mutex* JfieldIdCreation_lock; // a lock on creating JNI static field identifiers
50 extern Monitor* JNICritical_lock; // a lock used while entering and exiting JNI critical regions, allows GC to sometimes get in
51 extern Mutex* JvmtiThreadState_lock; // a lock on modification of JVMTI thread data
52 extern Monitor* EscapeBarrier_lock; // a lock to sync reallocating and relocking objects because of JVMTI access
53 extern Monitor* JvmtiVTMSTransition_lock; // a lock for Virtual Thread Mount State transition (VTMS transition) management
66 extern Mutex* RetData_lock; // a lock on installation of RetData inside method data
67 extern Monitor* VMOperation_lock; // a lock on queue of vm_operations waiting to execute
68 extern Monitor* ThreadsLockThrottle_lock; // used by Thread start/exit to reduce competition for Threads_lock,
69 // so a VM thread calling a safepoint is prioritized
70 extern Monitor* Threads_lock; // a lock on the Threads table of active Java threads
71 // (also used by Safepoints too to block threads creation/destruction)
72 extern Mutex* NonJavaThreadsList_lock; // a lock on the NonJavaThreads list
73 extern Mutex* NonJavaThreadsListSync_lock; // a lock for NonJavaThreads list synchronization
74 extern Monitor* CGC_lock; // used for coordination between
75 // fore- & background GC threads.
76 extern Monitor* STS_lock; // used for joining/leaving SuspendibleThreadSet.
77 extern Monitor* G1OldGCCount_lock; // in support of "concurrent" full gc
78 extern Mutex* G1RareEvent_lock; // Synchronizes (rare) parallel GC operations.
79 extern Mutex* G1DetachedRefinementStats_lock; // Lock protecting detached refinement stats
80 extern Mutex* MarkStackFreeList_lock; // Protects access to the global mark stack free list.
81 extern Mutex* MarkStackChunkList_lock; // Protects access to the global mark stack chunk list.
82 extern Mutex* MonitoringSupport_lock; // Protects updates to the serviceability memory pools and allocated memory high water mark.
83 extern Monitor* ConcurrentGCBreakpoints_lock; // Protects concurrent GC breakpoint management
84 extern Mutex* Compile_lock; // a lock held when Compilation is updating code (used to block CodeCache traversal, CHA updates, etc)
85 extern Monitor* MethodCompileQueue_lock; // a lock held when method compilations are enqueued, dequeued
86 extern Monitor* MethodCompileQueueC1_lock; // a lock held when method compilations are enqueued, dequeued
87 extern Monitor* MethodCompileQueueC2_lock; // a lock held when method compilations are enqueued, dequeued
88 extern Monitor* MethodCompileQueueC3_lock; // a lock held when method compilations are enqueued, dequeued
89 extern Monitor* MethodCompileQueueSC1_lock; // a lock held when method compilations are enqueued, dequeued
90 extern Monitor* MethodCompileQueueSC2_lock; // a lock held when method compilations are enqueued, dequeued
91 extern Monitor* CompileThread_lock; // a lock held by compile threads during compilation system initialization
92 extern Monitor* Compilation_lock; // a lock used to pause compilation
93 extern Mutex* TrainingData_lock; // a lock used when accessing training records
94 extern Monitor* TrainingReplayQueue_lock; // a lock held when class are added/removed to the training replay queue
95 extern Mutex* CompileTaskAlloc_lock; // a lock held when CompileTasks are allocated
96 extern Mutex* CompileStatistics_lock; // a lock held when updating compilation statistics
97 extern Mutex* DirectivesStack_lock; // a lock held when mutating the dirstack and ref counting directives
98 extern Monitor* Terminator_lock; // a lock used to guard termination of the vm
99 extern Monitor* InitCompleted_lock; // a lock used to signal threads waiting on init completed
100 extern Monitor* BeforeExit_lock; // a lock used to guard cleanups and shutdown hooks
101 extern Monitor* Notify_lock; // a lock used to synchronize the start-up of the vm
102 extern Mutex* ExceptionCache_lock; // a lock used to synchronize exception cache updates
103
104 #ifndef PRODUCT
105 extern Mutex* FullGCALot_lock; // a lock to make FullGCALot MT safe
106 #endif // PRODUCT
107
108 extern Mutex* RawMonitor_lock;
109 extern Mutex* PerfDataMemAlloc_lock; // a lock on the allocator for PerfData memory for performance data
110 extern Mutex* PerfDataManager_lock; // a long on access to PerfDataManager resources
111
112 extern Mutex* FreeList_lock; // protects the free region list during safepoints
113 extern Mutex* OldSets_lock; // protects the old region sets
114 extern Mutex* Uncommit_lock; // protects the uncommit list when not at safepoints
121 extern Monitor* PeriodicTask_lock; // protects the periodic task structure
122 extern Monitor* RedefineClasses_lock; // locks classes from parallel redefinition
123 extern Mutex* Verify_lock; // synchronize initialization of verify library
124 extern Monitor* ThreadsSMRDelete_lock; // Used by ThreadsSMRSupport to take pressure off the Threads_lock
125 extern Mutex* ThreadIdTableCreate_lock; // Used by ThreadIdTable to lazily create the thread id table
126 extern Mutex* SharedDecoder_lock; // serializes access to the decoder during normal (not error reporting) use
127 extern Mutex* DCmdFactory_lock; // serialize access to DCmdFactory information
128 extern Mutex* NMTQuery_lock; // serialize NMT Dcmd queries
129 extern Mutex* NMTCompilationCostHistory_lock; // guards NMT compilation cost history
130 #if INCLUDE_CDS
131 #if INCLUDE_JVMTI
132 extern Mutex* CDSClassFileStream_lock; // FileMapInfo::open_stream_for_jvmti
133 #endif
134 extern Mutex* DumpTimeTable_lock; // SystemDictionaryShared::_dumptime_table
135 extern Mutex* CDSLambda_lock; // SystemDictionaryShared::get_shared_lambda_proxy_class
136 extern Mutex* DumpRegion_lock; // Symbol::operator new(size_t sz, int len)
137 extern Mutex* ClassListFile_lock; // ClassListWriter()
138 extern Mutex* UnregisteredClassesTable_lock; // UnregisteredClassesTableTable
139 extern Mutex* LambdaFormInvokers_lock; // Protecting LambdaFormInvokers::_lambdaform_lines
140 extern Mutex* ScratchObjects_lock; // Protecting _scratch_xxx_table in heapShared.cpp
141 extern Mutex* ArchivedObjectTables_lock; // Protecting the table used by HeapShared::get_archived_object_permanent_index()
142 #endif // INCLUDE_CDS
143 #if INCLUDE_JFR
144 extern Mutex* JfrStacktrace_lock; // used to guard access to the JFR stacktrace table
145 extern Monitor* JfrMsg_lock; // protects JFR messaging
146 extern Mutex* JfrBuffer_lock; // protects JFR buffer operations
147 extern Monitor* JfrThreadSampler_lock; // used to suspend/resume JFR thread sampler
148 #endif
149
150 extern Mutex* Metaspace_lock; // protects Metaspace virtualspace and chunk expansions
151 extern Monitor* MetaspaceCritical_lock; // synchronizes failed metaspace allocations that risk throwing metaspace OOM
152 extern Mutex* ClassLoaderDataGraph_lock; // protects CLDG list, needed for concurrent unloading
153
154
155 extern Mutex* CodeHeapStateAnalytics_lock; // lock print functions against concurrent analyze functions.
156 // Only used locally in PrintCodeCacheLayout processing.
157
158 extern Mutex* ExternalsRecorder_lock; // used to guard access to the external addresses table
159
160 extern Monitor* ContinuationRelativize_lock;
161
184
185 // Print all mutexes/monitors that are currently owned by a thread; called
186 // by fatal error handler.
187 void print_owned_locks_on_error(outputStream* st);
188 void print_lock_ranks(outputStream* st);
189
190 // for debugging: check that we're already owning this lock (or are at a safepoint / handshake)
191 #ifdef ASSERT
192 void assert_locked_or_safepoint(const Mutex* lock);
193 void assert_lock_strong(const Mutex* lock);
194 #else
195 #define assert_locked_or_safepoint(lock)
196 #define assert_lock_strong(lock)
197 #endif
198
199 // Internal implementation. Skips on null Mutex.
200 // Subclasses enforce stronger invariants.
201 class MutexLockerImpl: public StackObj {
202 protected:
203 Mutex* _mutex;
204 bool _prof;
205 elapsedTimer _before;
206 elapsedTimer _after;
207
208 private:
209 static PerfCounter** _perf_lock_count;
210 static PerfCounter** _perf_lock_wait_time;
211 static PerfCounter** _perf_lock_hold_time;
212
213 public:
214
215 MutexLockerImpl(Mutex* mutex, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
216 _mutex(mutex), _prof(ProfileVMLocks && Thread::current_or_null() != nullptr && Thread::current()->profile_vm_locks()) {
217
218 bool no_safepoint_check = flag == Mutex::_no_safepoint_check_flag;
219 if (_mutex != nullptr) {
220 if (_prof) { _before.start(); } // before
221
222 if (no_safepoint_check) {
223 _mutex->lock_without_safepoint_check();
224 } else {
225 _mutex->lock();
226 }
227
228 if (_prof) { _before.stop(); _after.start(); } // after
229 }
230 }
231
232 MutexLockerImpl(Thread* thread, Mutex* mutex, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
233 _mutex(mutex), _prof(thread->profile_vm_locks()) {
234
235 if (_prof) { _before.start(); } // before
236
237 bool no_safepoint_check = flag == Mutex::_no_safepoint_check_flag;
238 if (_mutex != nullptr) {
239 if (no_safepoint_check) {
240 _mutex->lock_without_safepoint_check(thread);
241 } else {
242 _mutex->lock(thread);
243 }
244 }
245
246 if (_prof) { _before.stop(); _after.start(); } // after
247 }
248
249 ~MutexLockerImpl() {
250 if (_mutex != nullptr) {
251 assert_lock_strong(_mutex);
252 _mutex->unlock();
253
254 if (_mutex->id() == -1) {
255 log_trace(init)("Unnamed unclassified lock: %s", _mutex->name());
256 }
257
258 if (_prof) {
259 assert(UsePerfData, "required");
260 _after.stop();
261 _perf_lock_count [_mutex->id() + 1]->inc();
262 _perf_lock_wait_time[_mutex->id() + 1]->inc(_before.ticks());
263 _perf_lock_hold_time[_mutex->id() + 1]->inc(_after.ticks());
264 }
265 }
266 }
267
268 private:
269 static void print_counter_on(outputStream* st, const char* name, bool is_unique, int idx);
270
271 public:
272 static int name2id(const char* name);
273
274 static void post_initialize();
275 static void init_counters();
276 static void print_counters_on(outputStream* st);
277 };
278
279 // Simplest mutex locker.
280 // Does not allow null mutexes.
281 class MutexLocker: public MutexLockerImpl {
282 public:
283 MutexLocker(Mutex* mutex, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
284 MutexLockerImpl(mutex, flag) {
285 assert(mutex != nullptr, "null mutex not allowed");
286 }
287
288 MutexLocker(Thread* thread, Mutex* mutex, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
289 MutexLockerImpl(thread, mutex, flag) {
290 assert(mutex != nullptr, "null mutex not allowed");
291 }
292 };
293
294 // Conditional mutex locker.
295 // Like MutexLocker above, but only locks when condition is true.
296 class ConditionalMutexLocker: public MutexLockerImpl {
|