blob: e99b4bb301093b9f8bba469409b28d337b98900d [file] [log] [blame]
sewardjaf44c822007-11-25 14:01:38 +00001/*
2 This file is part of drd, a data race detector.
3
sewardj85642922008-01-14 11:54:56 +00004 Copyright (C) 2006-2008 Bart Van Assche
sewardjaf44c822007-11-25 14:01:38 +00005 bart.vanassche@gmail.com
6
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307, USA.
21
22 The GNU General Public License is contained in the file COPYING.
23*/
24
25
bart4bb53d82008-02-28 19:06:34 +000026#include "drd_clientobj.h"
sewardjaf44c822007-11-25 14:01:38 +000027#include "drd_error.h"
28#include "drd_mutex.h"
sewardj721ad7b2007-11-30 08:30:29 +000029#include "priv_drd_clientreq.h"
sewardjaf44c822007-11-25 14:01:38 +000030#include "pub_tool_errormgr.h" // VG_(maybe_record_error)()
31#include "pub_tool_libcassert.h" // tl_assert()
bart4bb53d82008-02-28 19:06:34 +000032#include "pub_tool_libcprint.h" // VG_(message)()
sewardjaf44c822007-11-25 14:01:38 +000033#include "pub_tool_machine.h" // VG_(get_IP)()
34#include "pub_tool_threadstate.h" // VG_(get_running_tid)()
35
36
sewardj347eeba2008-01-21 14:19:07 +000037// Local functions.
38
bart46d5f172008-02-28 19:49:37 +000039static void mutex_cleanup(struct mutex_info* p);
bart5357fcb2008-02-27 15:46:00 +000040static Bool mutex_is_locked(struct mutex_info* const p);
sewardj347eeba2008-01-21 14:19:07 +000041
42
sewardjaf44c822007-11-25 14:01:38 +000043// Local variables.
44
45static Bool s_trace_mutex;
46static ULong s_mutex_lock_count;
sewardjaf44c822007-11-25 14:01:38 +000047
48
49// Function definitions.
50
51void mutex_set_trace(const Bool trace_mutex)
52{
53 tl_assert(!! trace_mutex == trace_mutex);
54 s_trace_mutex = trace_mutex;
55}
56
57static
58void mutex_initialize(struct mutex_info* const p,
59 const Addr mutex,
sewardj721ad7b2007-11-30 08:30:29 +000060 const SizeT size,
61 const MutexT mutex_type)
sewardjaf44c822007-11-25 14:01:38 +000062{
63 tl_assert(mutex != 0);
64 tl_assert(size > 0);
65
bart4bb53d82008-02-28 19:06:34 +000066 tl_assert(p->a1 == mutex);
67 tl_assert(p->a2 == mutex + size);
bart46d5f172008-02-28 19:49:37 +000068 p->cleanup = (void(*)(DrdClientobj*))&mutex_cleanup;
sewardj721ad7b2007-11-30 08:30:29 +000069 p->mutex_type = mutex_type;
sewardjaf44c822007-11-25 14:01:38 +000070 p->recursion_count = 0;
71 p->owner = DRD_INVALID_THREADID;
72 vc_init(&p->vc, 0, 0);
73}
74
bart46d5f172008-02-28 19:49:37 +000075/** Deallocate the memory that was allocated by mutex_initialize(). */
76static void mutex_cleanup(struct mutex_info* p)
77{
bartb78312c2008-02-29 11:00:17 +000078 if (s_trace_mutex)
79 {
bart3b1ee452008-02-29 19:28:15 +000080 VG_(message)(Vg_UserMsg,
81 "[%d/%d] mutex_destroy %s 0x%lx",
82 VG_(get_running_tid)(),
83 thread_get_running_tid(),
bartb78312c2008-02-29 11:00:17 +000084 mutex_get_typename(p),
85 p->a1);
86 }
87
bart46d5f172008-02-28 19:49:37 +000088 if (mutex_is_locked(p))
89 {
90 MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner };
91 VG_(maybe_record_error)(VG_(get_running_tid)(),
92 MutexErr,
93 VG_(get_IP)(VG_(get_running_tid)()),
94 "Destroying locked mutex",
95 &MEI);
96 }
97
98 vc_cleanup(&p->vc);
99}
100
sewardjaf44c822007-11-25 14:01:38 +0000101static
sewardj721ad7b2007-11-30 08:30:29 +0000102struct mutex_info*
103mutex_get_or_allocate(const Addr mutex,
104 const SizeT size,
105 const MutexT mutex_type)
sewardjaf44c822007-11-25 14:01:38 +0000106{
bart4bb53d82008-02-28 19:06:34 +0000107 struct mutex_info* p;
sewardj721ad7b2007-11-30 08:30:29 +0000108
bart4bb53d82008-02-28 19:06:34 +0000109 tl_assert(offsetof(DrdClientobj, mutex) == 0);
bart72b751c2008-03-01 13:44:24 +0000110 p = &clientobj_get(mutex, ClientMutex)->mutex;
bart4bb53d82008-02-28 19:06:34 +0000111 if (p)
112 {
113 tl_assert(p->mutex_type == mutex_type);
114 tl_assert(p->a2 - p->a1 == size);
115 return p;
116 }
sewardj721ad7b2007-11-30 08:30:29 +0000117
bart72b751c2008-03-01 13:44:24 +0000118 if (clientobj_present(mutex, mutex + size))
sewardj721ad7b2007-11-30 08:30:29 +0000119 {
bart4bb53d82008-02-28 19:06:34 +0000120 GenericErrInfo GEI;
121 VG_(maybe_record_error)(VG_(get_running_tid)(),
122 GenericErr,
123 VG_(get_IP)(VG_(get_running_tid)()),
124 "Not a mutex",
125 &GEI);
126 return 0;
sewardj721ad7b2007-11-30 08:30:29 +0000127 }
bart4bb53d82008-02-28 19:06:34 +0000128
bart72b751c2008-03-01 13:44:24 +0000129 p = &clientobj_add(mutex, mutex + size, ClientMutex)->mutex;
bart4bb53d82008-02-28 19:06:34 +0000130 mutex_initialize(p, mutex, size, mutex_type);
131 return p;
sewardjaf44c822007-11-25 14:01:38 +0000132}
133
bart3b1ee452008-02-29 19:28:15 +0000134struct mutex_info* mutex_get(const Addr mutex)
135{
136 tl_assert(offsetof(DrdClientobj, mutex) == 0);
bart72b751c2008-03-01 13:44:24 +0000137 return &clientobj_get(mutex, ClientMutex)->mutex;
bart3b1ee452008-02-29 19:28:15 +0000138}
139
sewardj721ad7b2007-11-30 08:30:29 +0000140struct mutex_info*
141mutex_init(const Addr mutex, const SizeT size, const MutexT mutex_type)
sewardjaf44c822007-11-25 14:01:38 +0000142{
143 struct mutex_info* mutex_p;
144
sewardjaf44c822007-11-25 14:01:38 +0000145 if (s_trace_mutex)
146 {
bart3b1ee452008-02-29 19:28:15 +0000147 VG_(message)(Vg_UserMsg,
148 "[%d/%d] mutex_init %s 0x%lx",
149 VG_(get_running_tid)(),
150 thread_get_running_tid(),
sewardj347eeba2008-01-21 14:19:07 +0000151 mutex_type_name(mutex_type),
sewardjaf44c822007-11-25 14:01:38 +0000152 mutex);
153 }
154
sewardj347eeba2008-01-21 14:19:07 +0000155 mutex_p = mutex_get(mutex);
156 if (mutex_p)
157 {
158 const ThreadId vg_tid = VG_(get_running_tid)();
159 MutexErrInfo MEI
bart4bb53d82008-02-28 19:06:34 +0000160 = { mutex_p->a1, mutex_p->recursion_count, mutex_p->owner };
sewardj347eeba2008-01-21 14:19:07 +0000161 VG_(maybe_record_error)(vg_tid,
162 MutexErr,
163 VG_(get_IP)(vg_tid),
164 "Mutex reinitialization",
165 &MEI);
bartb78312c2008-02-29 11:00:17 +0000166 return mutex_p;
sewardj347eeba2008-01-21 14:19:07 +0000167 }
168 mutex_p = mutex_get_or_allocate(mutex, size, mutex_type);
169
sewardjaf44c822007-11-25 14:01:38 +0000170 return mutex_p;
171}
172
bart46d5f172008-02-28 19:49:37 +0000173/** Called after pthread_mutex_destroy(). */
sewardj347eeba2008-01-21 14:19:07 +0000174void mutex_post_destroy(const Addr mutex)
175{
bart72b751c2008-03-01 13:44:24 +0000176 struct mutex_info* p;
sewardj347eeba2008-01-21 14:19:07 +0000177
bart72b751c2008-03-01 13:44:24 +0000178 p = mutex_get(mutex);
179 if (p == 0)
180 {
181 GenericErrInfo GEI;
182 VG_(maybe_record_error)(VG_(get_running_tid)(),
183 GenericErr,
184 VG_(get_IP)(VG_(get_running_tid)()),
185 "Not a mutex",
186 &GEI);
187 return;
188 }
189
190 clientobj_remove(mutex, ClientMutex);
sewardj347eeba2008-01-21 14:19:07 +0000191}
192
bart8bba1f72008-02-27 16:13:05 +0000193/** Called before pthread_mutex_lock() is invoked. If a data structure for
194 * the client-side object was not yet created, do this now. Also check whether
195 * an attempt is made to lock recursively a synchronization object that must
196 * not be locked recursively.
197 */
198void mutex_pre_lock(const Addr mutex, const SizeT size, MutexT mutex_type)
199{
bart635cb162008-02-28 08:30:43 +0000200 struct mutex_info* p;
201
202 p = mutex_get(mutex);
bart8bba1f72008-02-27 16:13:05 +0000203 if (p == 0)
204 {
205 mutex_init(mutex, size, mutex_type);
206 p = mutex_get(mutex);
207 }
bart635cb162008-02-28 08:30:43 +0000208
bart8bba1f72008-02-27 16:13:05 +0000209 tl_assert(p);
210
211 if (p->owner == thread_get_running_tid()
212 && p->recursion_count >= 1
213 && mutex_type != mutex_type_recursive_mutex)
214 {
bart4bb53d82008-02-28 19:06:34 +0000215 MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner };
bart8bba1f72008-02-27 16:13:05 +0000216 VG_(maybe_record_error)(VG_(get_running_tid)(),
217 MutexErr,
218 VG_(get_IP)(VG_(get_running_tid)()),
219 "Recursive locking not allowed",
220 &MEI);
221 }
222}
223
sewardjaf44c822007-11-25 14:01:38 +0000224/**
225 * Update mutex_info state when locking the pthread_mutex_t mutex.
226 * Note: this function must be called after pthread_mutex_lock() has been
227 * called, or a race condition is triggered !
228 */
bart3b1ee452008-02-29 19:28:15 +0000229int mutex_post_lock(const Addr mutex, const SizeT size, MutexT mutex_type,
230 const Bool took_lock)
sewardjaf44c822007-11-25 14:01:38 +0000231{
bart3b1ee452008-02-29 19:28:15 +0000232 const DrdThreadId drd_tid = thread_get_running_tid();
sewardj721ad7b2007-11-30 08:30:29 +0000233 struct mutex_info* const p = mutex_get_or_allocate(mutex, size, mutex_type);
sewardjaf44c822007-11-25 14:01:38 +0000234
235 if (s_trace_mutex)
236 {
bart3b1ee452008-02-29 19:28:15 +0000237 VG_(message)(Vg_UserMsg,
238 "[%d/%d] post_mutex_lock %s 0x%lx rc %d owner %d",
239 VG_(get_running_tid)(),
sewardjaf44c822007-11-25 14:01:38 +0000240 drd_tid,
241 mutex_get_typename(p),
242 mutex,
243 p ? p->recursion_count : 0,
244 p ? p->owner : VG_INVALID_THREADID);
245 }
246
bart635cb162008-02-28 08:30:43 +0000247 if (mutex_type == mutex_type_invalid_mutex)
248 {
249 GenericErrInfo GEI;
250 VG_(maybe_record_error)(VG_(get_running_tid)(),
251 GenericErr,
252 VG_(get_IP)(VG_(get_running_tid)()),
253 "Invalid mutex",
254 &GEI);
255 }
256
bartab7a6442008-02-25 19:46:14 +0000257 if (p == 0)
258 {
barte883bc82008-02-26 19:13:04 +0000259 GenericErrInfo GEI;
bartab7a6442008-02-25 19:46:14 +0000260 VG_(maybe_record_error)(VG_(get_running_tid)(),
barte883bc82008-02-26 19:13:04 +0000261 GenericErr,
bartab7a6442008-02-25 19:46:14 +0000262 VG_(get_IP)(VG_(get_running_tid)()),
263 "Not a mutex",
barte883bc82008-02-26 19:13:04 +0000264 &GEI);
bartab7a6442008-02-25 19:46:14 +0000265 return 0;
266 }
267
bart3b1ee452008-02-29 19:28:15 +0000268 if (! took_lock)
269 return p->recursion_count;
bart5357fcb2008-02-27 15:46:00 +0000270
sewardj721ad7b2007-11-30 08:30:29 +0000271 tl_assert(p->mutex_type == mutex_type);
bart4bb53d82008-02-28 19:06:34 +0000272 tl_assert(p->a2 - p->a1 == size);
sewardj721ad7b2007-11-30 08:30:29 +0000273
sewardjaf44c822007-11-25 14:01:38 +0000274 if (p->recursion_count == 0)
275 {
276 p->owner = drd_tid;
277 s_mutex_lock_count++;
278 }
279 else if (p->owner != drd_tid)
280 {
bart3b1ee452008-02-29 19:28:15 +0000281 VG_(message)(Vg_UserMsg,
sewardjaf44c822007-11-25 14:01:38 +0000282 "The impossible happened: mutex 0x%lx is locked"
283 " simultaneously by two threads (recursion count %d,"
284 " owners %d and %d) !",
bart4bb53d82008-02-28 19:06:34 +0000285 p->a1, p->recursion_count, p->owner, drd_tid);
sewardj347eeba2008-01-21 14:19:07 +0000286 p->owner = drd_tid;
sewardjaf44c822007-11-25 14:01:38 +0000287 }
288 p->recursion_count++;
289
290 if (p->recursion_count == 1)
291 {
bartab7a6442008-02-25 19:46:14 +0000292 const DrdThreadId last_owner = p->owner;
293
sewardjaf44c822007-11-25 14:01:38 +0000294 if (last_owner != drd_tid && last_owner != DRD_INVALID_THREADID)
295 thread_combine_vc2(drd_tid, mutex_get_last_vc(mutex));
296 thread_new_segment(drd_tid);
297 }
298
299 return p->recursion_count;
300}
301
302/**
303 * Update mutex_info state when unlocking the pthread_mutex_t mutex.
304 * Note: this function must be called before pthread_mutex_unlock() is called,
305 * or a race condition is triggered !
bartb78312c2008-02-29 11:00:17 +0000306 * @return New value of the mutex recursion count.
sewardjaf44c822007-11-25 14:01:38 +0000307 * @param mutex Pointer to pthread_mutex_t data structure in the client space.
308 * @param tid ThreadId of the thread calling pthread_mutex_unlock().
309 * @param vc Pointer to the current vector clock of thread tid.
310 */
sewardj721ad7b2007-11-30 08:30:29 +0000311int mutex_unlock(const Addr mutex, const MutexT mutex_type)
sewardjaf44c822007-11-25 14:01:38 +0000312{
bartb78312c2008-02-29 11:00:17 +0000313 const DrdThreadId drd_tid = thread_get_running_tid();
314 const ThreadId vg_tid = VG_(get_running_tid)();
sewardjaf44c822007-11-25 14:01:38 +0000315 const VectorClock* const vc = thread_get_vc(drd_tid);
316 struct mutex_info* const p = mutex_get(mutex);
317
bartb78312c2008-02-29 11:00:17 +0000318 if (s_trace_mutex && p != 0)
sewardjaf44c822007-11-25 14:01:38 +0000319 {
bart3b1ee452008-02-29 19:28:15 +0000320 VG_(message)(Vg_UserMsg,
321 "[%d/%d] mutex_unlock %s 0x%lx rc %d",
322 vg_tid,
323 drd_tid,
sewardjaf44c822007-11-25 14:01:38 +0000324 mutex_get_typename(p),
325 mutex,
326 p->recursion_count,
327 p->owner);
328 }
329
bart635cb162008-02-28 08:30:43 +0000330 if (mutex_type == mutex_type_invalid_mutex)
331 {
332 GenericErrInfo GEI;
333 VG_(maybe_record_error)(VG_(get_running_tid)(),
334 GenericErr,
335 VG_(get_IP)(VG_(get_running_tid)()),
336 "Invalid mutex",
337 &GEI);
338 }
339
bart5357fcb2008-02-27 15:46:00 +0000340 if (p == 0)
bartab7a6442008-02-25 19:46:14 +0000341 {
barte883bc82008-02-26 19:13:04 +0000342 GenericErrInfo GEI;
bartab7a6442008-02-25 19:46:14 +0000343 VG_(maybe_record_error)(vg_tid,
barte883bc82008-02-26 19:13:04 +0000344 GenericErr,
bartab7a6442008-02-25 19:46:14 +0000345 VG_(get_IP)(vg_tid),
346 "Not a mutex",
barte883bc82008-02-26 19:13:04 +0000347 &GEI);
bartab7a6442008-02-25 19:46:14 +0000348 return 0;
349 }
350
bart5357fcb2008-02-27 15:46:00 +0000351 if (p->owner == DRD_INVALID_THREADID)
352 {
bart4bb53d82008-02-28 19:06:34 +0000353 MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner };
bart5357fcb2008-02-27 15:46:00 +0000354 VG_(maybe_record_error)(vg_tid,
355 MutexErr,
356 VG_(get_IP)(vg_tid),
357 "Mutex not locked",
358 &MEI);
359 return 0;
360 }
361
sewardjaf44c822007-11-25 14:01:38 +0000362 tl_assert(p);
bart5357fcb2008-02-27 15:46:00 +0000363 if (p->mutex_type != mutex_type)
364 {
bart3b1ee452008-02-29 19:28:15 +0000365 VG_(message)(Vg_UserMsg, "??? mutex %p: type changed from %d into %d",
bart4bb53d82008-02-28 19:06:34 +0000366 p->a1, p->mutex_type, mutex_type);
bart5357fcb2008-02-27 15:46:00 +0000367 }
sewardj721ad7b2007-11-30 08:30:29 +0000368 tl_assert(p->mutex_type == mutex_type);
sewardjaf44c822007-11-25 14:01:38 +0000369 tl_assert(p->owner != DRD_INVALID_THREADID);
sewardj721ad7b2007-11-30 08:30:29 +0000370
sewardjaf44c822007-11-25 14:01:38 +0000371 if (p->owner != drd_tid)
372 {
bart4bb53d82008-02-28 19:06:34 +0000373 MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner };
sewardjaf44c822007-11-25 14:01:38 +0000374 VG_(maybe_record_error)(vg_tid,
375 MutexErr,
376 VG_(get_IP)(vg_tid),
377 "Mutex not unlocked by owner thread",
378 &MEI);
379 }
380 p->recursion_count--;
sewardj347eeba2008-01-21 14:19:07 +0000381 if (p->recursion_count < 0)
382 {
383 MutexErrInfo MEI
bart4bb53d82008-02-28 19:06:34 +0000384 = { p->a1, p->recursion_count, p->owner };
sewardj347eeba2008-01-21 14:19:07 +0000385 VG_(maybe_record_error)(vg_tid,
386 MutexErr,
387 VG_(get_IP)(vg_tid),
388 "Attempt to unlock a mutex that is not locked",
389 &MEI);
390 p->recursion_count = 0;
391 }
392
sewardjaf44c822007-11-25 14:01:38 +0000393 if (p->recursion_count == 0)
394 {
395 /* This pthread_mutex_unlock() call really unlocks the mutex. Save the */
396 /* current vector clock of the thread such that it is available when */
397 /* this mutex is locked again. */
bart301c3112008-02-24 18:22:37 +0000398 vc_assign(&p->vc, vc);
sewardjaf44c822007-11-25 14:01:38 +0000399
400 thread_new_segment(drd_tid);
401 }
402 return p->recursion_count;
403}
404
405const char* mutex_get_typename(struct mutex_info* const p)
406{
407 tl_assert(p);
sewardj721ad7b2007-11-30 08:30:29 +0000408
sewardj347eeba2008-01-21 14:19:07 +0000409 return mutex_type_name(p->mutex_type);
410}
411
412const char* mutex_type_name(const MutexT mt)
413{
414 switch (mt)
sewardjaf44c822007-11-25 14:01:38 +0000415 {
bart635cb162008-02-28 08:30:43 +0000416 case mutex_type_invalid_mutex:
417 return "invalid mutex";
bart5357fcb2008-02-27 15:46:00 +0000418 case mutex_type_recursive_mutex:
419 return "recursive mutex";
420 case mutex_type_errorcheck_mutex:
421 return "error checking mutex";
422 case mutex_type_default_mutex:
sewardjaf44c822007-11-25 14:01:38 +0000423 return "mutex";
sewardj721ad7b2007-11-30 08:30:29 +0000424 case mutex_type_spinlock:
sewardjaf44c822007-11-25 14:01:38 +0000425 return "spinlock";
426 default:
427 tl_assert(0);
428 }
429 return "?";
430}
431
bart5357fcb2008-02-27 15:46:00 +0000432/** Return true if the specified mutex is locked by any thread. */
433static Bool mutex_is_locked(struct mutex_info* const p)
434{
435 tl_assert(p);
436 return (p->recursion_count > 0);
437}
438
sewardjaf44c822007-11-25 14:01:38 +0000439Bool mutex_is_locked_by(const Addr mutex, const DrdThreadId tid)
440{
441 struct mutex_info* const p = mutex_get(mutex);
sewardjaf44c822007-11-25 14:01:38 +0000442 if (p)
443 {
444 return (p->recursion_count > 0 && p->owner == tid);
445 }
446 return False;
447}
448
449const VectorClock* mutex_get_last_vc(const Addr mutex)
450{
451 struct mutex_info* const p = mutex_get(mutex);
452 return p ? &p->vc : 0;
453}
454
455int mutex_get_recursion_count(const Addr mutex)
456{
457 struct mutex_info* const p = mutex_get(mutex);
458 tl_assert(p);
459 return p->recursion_count;
460}
461
462/**
bart301c3112008-02-24 18:22:37 +0000463 * Call this function when thread tid stops to exist, such that the
sewardjaf44c822007-11-25 14:01:38 +0000464 * "last owner" field can be cleared if it still refers to that thread.
sewardjaf44c822007-11-25 14:01:38 +0000465 */
bart301c3112008-02-24 18:22:37 +0000466void mutex_thread_delete(const DrdThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000467{
bart4bb53d82008-02-28 19:06:34 +0000468 struct mutex_info* p;
469
bart72b751c2008-03-01 13:44:24 +0000470 clientobj_resetiter();
471 for ( ; (p = &clientobj_next(ClientMutex)->mutex) != 0; )
sewardjaf44c822007-11-25 14:01:38 +0000472 {
bart4bb53d82008-02-28 19:06:34 +0000473 if (p->owner == tid && p->recursion_count > 0)
sewardjaf44c822007-11-25 14:01:38 +0000474 {
bart5357fcb2008-02-27 15:46:00 +0000475 MutexErrInfo MEI
bart4bb53d82008-02-28 19:06:34 +0000476 = { p->a1, p->recursion_count, p->owner };
bart5357fcb2008-02-27 15:46:00 +0000477 VG_(maybe_record_error)(VG_(get_running_tid)(),
478 MutexErr,
479 VG_(get_IP)(VG_(get_running_tid)()),
480 "Mutex still locked at thread exit",
481 &MEI);
sewardjaf44c822007-11-25 14:01:38 +0000482 p->owner = VG_INVALID_THREADID;
483 }
484 }
485}
486
sewardjaf44c822007-11-25 14:01:38 +0000487ULong get_mutex_lock_count(void)
488{
489 return s_mutex_lock_count;
490}
sewardj347eeba2008-01-21 14:19:07 +0000491
492
493/*
494 * Local variables:
495 * c-basic-offset: 3
496 * End:
497 */