blob: 2d55c31e1b5bf6a9e452454be592fa4217f7602d [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()
bart5bd9f2d2008-03-03 20:31:58 +000032#include "pub_tool_libcbase.h" // VG_(strlen)
bart4bb53d82008-02-28 19:06:34 +000033#include "pub_tool_libcprint.h" // VG_(message)()
sewardjaf44c822007-11-25 14:01:38 +000034#include "pub_tool_machine.h" // VG_(get_IP)()
35#include "pub_tool_threadstate.h" // VG_(get_running_tid)()
36
37
sewardj347eeba2008-01-21 14:19:07 +000038// Local functions.
39
bart46d5f172008-02-28 19:49:37 +000040static void mutex_cleanup(struct mutex_info* p);
bart5357fcb2008-02-27 15:46:00 +000041static Bool mutex_is_locked(struct mutex_info* const p);
sewardj347eeba2008-01-21 14:19:07 +000042
43
sewardjaf44c822007-11-25 14:01:38 +000044// Local variables.
45
46static Bool s_trace_mutex;
47static ULong s_mutex_lock_count;
sewardjaf44c822007-11-25 14:01:38 +000048
49
50// Function definitions.
51
52void mutex_set_trace(const Bool trace_mutex)
53{
54 tl_assert(!! trace_mutex == trace_mutex);
55 s_trace_mutex = trace_mutex;
56}
57
58static
59void mutex_initialize(struct mutex_info* const p,
bart0268dfa2008-03-11 20:10:21 +000060 const Addr mutex, const MutexT mutex_type)
sewardjaf44c822007-11-25 14:01:38 +000061{
62 tl_assert(mutex != 0);
sewardjaf44c822007-11-25 14:01:38 +000063
bart4bb53d82008-02-28 19:06:34 +000064 tl_assert(p->a1 == mutex);
barta2b6e1b2008-03-17 18:32:39 +000065 p->cleanup = (void(*)(DrdClientobj*))&mutex_cleanup;
66 p->mutex_type = mutex_type;
67 p->recursion_count = 0;
68 p->owner = DRD_INVALID_THREADID;
69 p->last_locked_segment = 0;
sewardjaf44c822007-11-25 14:01:38 +000070}
71
bart46d5f172008-02-28 19:49:37 +000072/** Deallocate the memory that was allocated by mutex_initialize(). */
73static void mutex_cleanup(struct mutex_info* p)
74{
bartb78312c2008-02-29 11:00:17 +000075 if (s_trace_mutex)
76 {
bart3b1ee452008-02-29 19:28:15 +000077 VG_(message)(Vg_UserMsg,
78 "[%d/%d] mutex_destroy %s 0x%lx",
79 VG_(get_running_tid)(),
80 thread_get_running_tid(),
bartb78312c2008-02-29 11:00:17 +000081 mutex_get_typename(p),
82 p->a1);
83 }
84
bart46d5f172008-02-28 19:49:37 +000085 if (mutex_is_locked(p))
86 {
87 MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner };
88 VG_(maybe_record_error)(VG_(get_running_tid)(),
89 MutexErr,
90 VG_(get_IP)(VG_(get_running_tid)()),
91 "Destroying locked mutex",
92 &MEI);
93 }
94
barta2b6e1b2008-03-17 18:32:39 +000095 sg_put(p->last_locked_segment);
96 p->last_locked_segment = 0;
bart46d5f172008-02-28 19:49:37 +000097}
98
sewardjaf44c822007-11-25 14:01:38 +000099static
sewardj721ad7b2007-11-30 08:30:29 +0000100struct mutex_info*
bart0268dfa2008-03-11 20:10:21 +0000101mutex_get_or_allocate(const Addr mutex, const MutexT mutex_type)
sewardjaf44c822007-11-25 14:01:38 +0000102{
bart4bb53d82008-02-28 19:06:34 +0000103 struct mutex_info* p;
sewardj721ad7b2007-11-30 08:30:29 +0000104
bart4bb53d82008-02-28 19:06:34 +0000105 tl_assert(offsetof(DrdClientobj, mutex) == 0);
bart72b751c2008-03-01 13:44:24 +0000106 p = &clientobj_get(mutex, ClientMutex)->mutex;
bart4bb53d82008-02-28 19:06:34 +0000107 if (p)
108 {
bart4bb53d82008-02-28 19:06:34 +0000109 return p;
110 }
sewardj721ad7b2007-11-30 08:30:29 +0000111
bart0268dfa2008-03-11 20:10:21 +0000112 if (clientobj_present(mutex, mutex + 1))
sewardj721ad7b2007-11-30 08:30:29 +0000113 {
bart5bd9f2d2008-03-03 20:31:58 +0000114 GenericErrInfo GEI;
115 VG_(maybe_record_error)(VG_(get_running_tid)(),
116 GenericErr,
117 VG_(get_IP)(VG_(get_running_tid)()),
118 "Not a mutex",
119 &GEI);
120 return 0;
sewardj721ad7b2007-11-30 08:30:29 +0000121 }
bart4bb53d82008-02-28 19:06:34 +0000122
bart0268dfa2008-03-11 20:10:21 +0000123 p = &clientobj_add(mutex, ClientMutex)->mutex;
124 mutex_initialize(p, mutex, mutex_type);
bart4bb53d82008-02-28 19:06:34 +0000125 return p;
sewardjaf44c822007-11-25 14:01:38 +0000126}
127
bart3b1ee452008-02-29 19:28:15 +0000128struct mutex_info* mutex_get(const Addr mutex)
129{
130 tl_assert(offsetof(DrdClientobj, mutex) == 0);
bart72b751c2008-03-01 13:44:24 +0000131 return &clientobj_get(mutex, ClientMutex)->mutex;
bart3b1ee452008-02-29 19:28:15 +0000132}
133
bart00344642008-03-01 15:27:41 +0000134/** Called before pthread_mutex_init(). */
sewardj721ad7b2007-11-30 08:30:29 +0000135struct mutex_info*
bart0268dfa2008-03-11 20:10:21 +0000136mutex_init(const Addr mutex, const MutexT mutex_type)
sewardjaf44c822007-11-25 14:01:38 +0000137{
bart00344642008-03-01 15:27:41 +0000138 struct mutex_info* p;
sewardjaf44c822007-11-25 14:01:38 +0000139
sewardjaf44c822007-11-25 14:01:38 +0000140 if (s_trace_mutex)
141 {
bart3b1ee452008-02-29 19:28:15 +0000142 VG_(message)(Vg_UserMsg,
143 "[%d/%d] mutex_init %s 0x%lx",
144 VG_(get_running_tid)(),
145 thread_get_running_tid(),
sewardj347eeba2008-01-21 14:19:07 +0000146 mutex_type_name(mutex_type),
sewardjaf44c822007-11-25 14:01:38 +0000147 mutex);
148 }
149
bart00344642008-03-01 15:27:41 +0000150 if (mutex_type == mutex_type_invalid_mutex)
151 {
152 GenericErrInfo GEI;
153 VG_(maybe_record_error)(VG_(get_running_tid)(),
154 GenericErr,
155 VG_(get_IP)(VG_(get_running_tid)()),
bart777f7fe2008-03-02 17:43:18 +0000156 "Not a mutex",
bart00344642008-03-01 15:27:41 +0000157 &GEI);
158 return 0;
159 }
160
161 p = mutex_get(mutex);
162 if (p)
sewardj347eeba2008-01-21 14:19:07 +0000163 {
164 const ThreadId vg_tid = VG_(get_running_tid)();
165 MutexErrInfo MEI
bart00344642008-03-01 15:27:41 +0000166 = { p->a1, p->recursion_count, p->owner };
sewardj347eeba2008-01-21 14:19:07 +0000167 VG_(maybe_record_error)(vg_tid,
168 MutexErr,
169 VG_(get_IP)(vg_tid),
170 "Mutex reinitialization",
171 &MEI);
bart00344642008-03-01 15:27:41 +0000172 return p;
sewardj347eeba2008-01-21 14:19:07 +0000173 }
bart0268dfa2008-03-11 20:10:21 +0000174 p = mutex_get_or_allocate(mutex, mutex_type);
sewardj347eeba2008-01-21 14:19:07 +0000175
bart00344642008-03-01 15:27:41 +0000176 return p;
sewardjaf44c822007-11-25 14:01:38 +0000177}
178
bart46d5f172008-02-28 19:49:37 +0000179/** Called after pthread_mutex_destroy(). */
sewardj347eeba2008-01-21 14:19:07 +0000180void mutex_post_destroy(const Addr mutex)
181{
bart72b751c2008-03-01 13:44:24 +0000182 struct mutex_info* p;
sewardj347eeba2008-01-21 14:19:07 +0000183
bart72b751c2008-03-01 13:44:24 +0000184 p = mutex_get(mutex);
185 if (p == 0)
186 {
187 GenericErrInfo GEI;
188 VG_(maybe_record_error)(VG_(get_running_tid)(),
189 GenericErr,
190 VG_(get_IP)(VG_(get_running_tid)()),
191 "Not a mutex",
192 &GEI);
193 return;
194 }
195
196 clientobj_remove(mutex, ClientMutex);
sewardj347eeba2008-01-21 14:19:07 +0000197}
198
bart8bba1f72008-02-27 16:13:05 +0000199/** Called before pthread_mutex_lock() is invoked. If a data structure for
200 * the client-side object was not yet created, do this now. Also check whether
201 * an attempt is made to lock recursively a synchronization object that must
202 * not be locked recursively.
203 */
bart0268dfa2008-03-11 20:10:21 +0000204void mutex_pre_lock(const Addr mutex, MutexT mutex_type)
bart8bba1f72008-02-27 16:13:05 +0000205{
bart635cb162008-02-28 08:30:43 +0000206 struct mutex_info* p;
207
bart0268dfa2008-03-11 20:10:21 +0000208 p = mutex_get_or_allocate(mutex, mutex_type);
209
210 tl_assert(p);
bart00344642008-03-01 15:27:41 +0000211
212 if (s_trace_mutex)
213 {
214 VG_(message)(Vg_UserMsg,
215 "[%d/%d] pre_mutex_lock %s 0x%lx rc %d owner %d",
216 VG_(get_running_tid)(),
217 thread_get_running_tid(),
bart0268dfa2008-03-11 20:10:21 +0000218 mutex_get_typename(p),
bart00344642008-03-01 15:27:41 +0000219 mutex,
bart0268dfa2008-03-11 20:10:21 +0000220 p->recursion_count,
221 p->owner);
bart00344642008-03-01 15:27:41 +0000222 }
223
224 if (mutex_type == mutex_type_invalid_mutex)
225 {
226 GenericErrInfo GEI;
227 VG_(maybe_record_error)(VG_(get_running_tid)(),
228 GenericErr,
229 VG_(get_IP)(VG_(get_running_tid)()),
bart777f7fe2008-03-02 17:43:18 +0000230 "Not a mutex",
bart00344642008-03-01 15:27:41 +0000231 &GEI);
232 return;
233 }
234
bart8bba1f72008-02-27 16:13:05 +0000235 if (p->owner == thread_get_running_tid()
236 && p->recursion_count >= 1
237 && mutex_type != mutex_type_recursive_mutex)
238 {
bart4bb53d82008-02-28 19:06:34 +0000239 MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner };
bart8bba1f72008-02-27 16:13:05 +0000240 VG_(maybe_record_error)(VG_(get_running_tid)(),
241 MutexErr,
242 VG_(get_IP)(VG_(get_running_tid)()),
243 "Recursive locking not allowed",
244 &MEI);
245 }
246}
247
sewardjaf44c822007-11-25 14:01:38 +0000248/**
249 * Update mutex_info state when locking the pthread_mutex_t mutex.
250 * Note: this function must be called after pthread_mutex_lock() has been
251 * called, or a race condition is triggered !
252 */
bart777f7fe2008-03-02 17:43:18 +0000253void mutex_post_lock(const Addr mutex, const Bool took_lock)
sewardjaf44c822007-11-25 14:01:38 +0000254{
bart3b1ee452008-02-29 19:28:15 +0000255 const DrdThreadId drd_tid = thread_get_running_tid();
bart00344642008-03-01 15:27:41 +0000256 struct mutex_info* p;
257
258 p = mutex_get(mutex);
sewardjaf44c822007-11-25 14:01:38 +0000259
260 if (s_trace_mutex)
261 {
bart3b1ee452008-02-29 19:28:15 +0000262 VG_(message)(Vg_UserMsg,
263 "[%d/%d] post_mutex_lock %s 0x%lx rc %d owner %d",
264 VG_(get_running_tid)(),
sewardjaf44c822007-11-25 14:01:38 +0000265 drd_tid,
bart00344642008-03-01 15:27:41 +0000266 p ? mutex_get_typename(p) : "(?)",
sewardjaf44c822007-11-25 14:01:38 +0000267 mutex,
268 p ? p->recursion_count : 0,
269 p ? p->owner : VG_INVALID_THREADID);
270 }
271
bart777f7fe2008-03-02 17:43:18 +0000272 if (! p || ! took_lock)
bart5bd9f2d2008-03-03 20:31:58 +0000273 return;
bart5357fcb2008-02-27 15:46:00 +0000274
sewardjaf44c822007-11-25 14:01:38 +0000275 if (p->recursion_count == 0)
276 {
bart5bd9f2d2008-03-03 20:31:58 +0000277 const DrdThreadId last_owner = p->owner;
278
279 if (last_owner != drd_tid && last_owner != DRD_INVALID_THREADID)
barta2b6e1b2008-03-17 18:32:39 +0000280 {
281 tl_assert(p->last_locked_segment);
282 thread_combine_vc2(drd_tid, &p->last_locked_segment->vc);
283 }
bart5bd9f2d2008-03-03 20:31:58 +0000284 thread_new_segment(drd_tid);
285
sewardjaf44c822007-11-25 14:01:38 +0000286 p->owner = drd_tid;
287 s_mutex_lock_count++;
288 }
289 else if (p->owner != drd_tid)
290 {
bart3b1ee452008-02-29 19:28:15 +0000291 VG_(message)(Vg_UserMsg,
sewardjaf44c822007-11-25 14:01:38 +0000292 "The impossible happened: mutex 0x%lx is locked"
293 " simultaneously by two threads (recursion count %d,"
294 " owners %d and %d) !",
bart4bb53d82008-02-28 19:06:34 +0000295 p->a1, p->recursion_count, p->owner, drd_tid);
sewardj347eeba2008-01-21 14:19:07 +0000296 p->owner = drd_tid;
sewardjaf44c822007-11-25 14:01:38 +0000297 }
298 p->recursion_count++;
sewardjaf44c822007-11-25 14:01:38 +0000299}
300
301/**
302 * Update mutex_info state when unlocking the pthread_mutex_t mutex.
303 * Note: this function must be called before pthread_mutex_unlock() is called,
304 * or a race condition is triggered !
bartb78312c2008-02-29 11:00:17 +0000305 * @return New value of the mutex recursion count.
sewardjaf44c822007-11-25 14:01:38 +0000306 * @param mutex Pointer to pthread_mutex_t data structure in the client space.
307 * @param tid ThreadId of the thread calling pthread_mutex_unlock().
308 * @param vc Pointer to the current vector clock of thread tid.
309 */
bart777f7fe2008-03-02 17:43:18 +0000310void mutex_unlock(const Addr mutex, const MutexT mutex_type)
sewardjaf44c822007-11-25 14:01:38 +0000311{
bartb78312c2008-02-29 11:00:17 +0000312 const DrdThreadId drd_tid = thread_get_running_tid();
313 const ThreadId vg_tid = VG_(get_running_tid)();
sewardjaf44c822007-11-25 14:01:38 +0000314 struct mutex_info* const p = mutex_get(mutex);
315
bart777f7fe2008-03-02 17:43:18 +0000316 if (s_trace_mutex)
sewardjaf44c822007-11-25 14:01:38 +0000317 {
bart3b1ee452008-02-29 19:28:15 +0000318 VG_(message)(Vg_UserMsg,
319 "[%d/%d] mutex_unlock %s 0x%lx rc %d",
320 vg_tid,
321 drd_tid,
bart777f7fe2008-03-02 17:43:18 +0000322 p ? mutex_get_typename(p) : "?",
sewardjaf44c822007-11-25 14:01:38 +0000323 mutex,
barta2b6e1b2008-03-17 18:32:39 +0000324 p ? p->recursion_count : 0);
sewardjaf44c822007-11-25 14:01:38 +0000325 }
326
bart777f7fe2008-03-02 17:43:18 +0000327 if (p == 0 || mutex_type == mutex_type_invalid_mutex)
bartab7a6442008-02-25 19:46:14 +0000328 {
bart5bd9f2d2008-03-03 20:31:58 +0000329 GenericErrInfo GEI;
330 VG_(maybe_record_error)(vg_tid,
331 GenericErr,
332 VG_(get_IP)(vg_tid),
333 "Not a mutex",
334 &GEI);
335 return;
bartab7a6442008-02-25 19:46:14 +0000336 }
337
bart5357fcb2008-02-27 15:46:00 +0000338 if (p->owner == DRD_INVALID_THREADID)
339 {
bart4bb53d82008-02-28 19:06:34 +0000340 MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner };
bart5357fcb2008-02-27 15:46:00 +0000341 VG_(maybe_record_error)(vg_tid,
342 MutexErr,
343 VG_(get_IP)(vg_tid),
344 "Mutex not locked",
345 &MEI);
bart5bd9f2d2008-03-03 20:31:58 +0000346 return;
bart5357fcb2008-02-27 15:46:00 +0000347 }
348
sewardjaf44c822007-11-25 14:01:38 +0000349 tl_assert(p);
bart5357fcb2008-02-27 15:46:00 +0000350 if (p->mutex_type != mutex_type)
351 {
barta2b6e1b2008-03-17 18:32:39 +0000352 VG_(message)(Vg_UserMsg, "??? mutex 0x%lx: type changed from %d into %d",
bart5bd9f2d2008-03-03 20:31:58 +0000353 p->a1, p->mutex_type, mutex_type);
bart5357fcb2008-02-27 15:46:00 +0000354 }
sewardj721ad7b2007-11-30 08:30:29 +0000355 tl_assert(p->mutex_type == mutex_type);
sewardjaf44c822007-11-25 14:01:38 +0000356 tl_assert(p->owner != DRD_INVALID_THREADID);
sewardj721ad7b2007-11-30 08:30:29 +0000357
bart777f7fe2008-03-02 17:43:18 +0000358 if (p->owner != drd_tid || p->recursion_count <= 0)
sewardjaf44c822007-11-25 14:01:38 +0000359 {
bart4bb53d82008-02-28 19:06:34 +0000360 MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner };
sewardjaf44c822007-11-25 14:01:38 +0000361 VG_(maybe_record_error)(vg_tid,
362 MutexErr,
363 VG_(get_IP)(vg_tid),
bart777f7fe2008-03-02 17:43:18 +0000364 "Mutex not locked by calling thread",
sewardjaf44c822007-11-25 14:01:38 +0000365 &MEI);
bart777f7fe2008-03-02 17:43:18 +0000366 return;
sewardjaf44c822007-11-25 14:01:38 +0000367 }
bart777f7fe2008-03-02 17:43:18 +0000368 tl_assert(p->recursion_count > 0);
sewardjaf44c822007-11-25 14:01:38 +0000369 p->recursion_count--;
bart777f7fe2008-03-02 17:43:18 +0000370 tl_assert(p->recursion_count >= 0);
sewardj347eeba2008-01-21 14:19:07 +0000371
sewardjaf44c822007-11-25 14:01:38 +0000372 if (p->recursion_count == 0)
373 {
374 /* This pthread_mutex_unlock() call really unlocks the mutex. Save the */
375 /* current vector clock of the thread such that it is available when */
376 /* this mutex is locked again. */
sewardjaf44c822007-11-25 14:01:38 +0000377
barta2b6e1b2008-03-17 18:32:39 +0000378 thread_get_latest_segment(&p->last_locked_segment, drd_tid);
sewardjaf44c822007-11-25 14:01:38 +0000379 thread_new_segment(drd_tid);
380 }
sewardjaf44c822007-11-25 14:01:38 +0000381}
382
383const char* mutex_get_typename(struct mutex_info* const p)
384{
385 tl_assert(p);
sewardj721ad7b2007-11-30 08:30:29 +0000386
sewardj347eeba2008-01-21 14:19:07 +0000387 return mutex_type_name(p->mutex_type);
388}
389
390const char* mutex_type_name(const MutexT mt)
391{
392 switch (mt)
sewardjaf44c822007-11-25 14:01:38 +0000393 {
bart635cb162008-02-28 08:30:43 +0000394 case mutex_type_invalid_mutex:
395 return "invalid mutex";
bart5357fcb2008-02-27 15:46:00 +0000396 case mutex_type_recursive_mutex:
397 return "recursive mutex";
398 case mutex_type_errorcheck_mutex:
399 return "error checking mutex";
400 case mutex_type_default_mutex:
sewardjaf44c822007-11-25 14:01:38 +0000401 return "mutex";
sewardj721ad7b2007-11-30 08:30:29 +0000402 case mutex_type_spinlock:
sewardjaf44c822007-11-25 14:01:38 +0000403 return "spinlock";
404 default:
405 tl_assert(0);
406 }
407 return "?";
408}
409
bart5357fcb2008-02-27 15:46:00 +0000410/** Return true if the specified mutex is locked by any thread. */
411static Bool mutex_is_locked(struct mutex_info* const p)
412{
413 tl_assert(p);
414 return (p->recursion_count > 0);
415}
416
sewardjaf44c822007-11-25 14:01:38 +0000417Bool mutex_is_locked_by(const Addr mutex, const DrdThreadId tid)
418{
419 struct mutex_info* const p = mutex_get(mutex);
sewardjaf44c822007-11-25 14:01:38 +0000420 if (p)
421 {
422 return (p->recursion_count > 0 && p->owner == tid);
423 }
424 return False;
425}
426
sewardjaf44c822007-11-25 14:01:38 +0000427int mutex_get_recursion_count(const Addr mutex)
428{
429 struct mutex_info* const p = mutex_get(mutex);
430 tl_assert(p);
431 return p->recursion_count;
432}
433
434/**
bart301c3112008-02-24 18:22:37 +0000435 * Call this function when thread tid stops to exist, such that the
sewardjaf44c822007-11-25 14:01:38 +0000436 * "last owner" field can be cleared if it still refers to that thread.
sewardjaf44c822007-11-25 14:01:38 +0000437 */
bart301c3112008-02-24 18:22:37 +0000438void mutex_thread_delete(const DrdThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000439{
bart4bb53d82008-02-28 19:06:34 +0000440 struct mutex_info* p;
441
bart72b751c2008-03-01 13:44:24 +0000442 clientobj_resetiter();
443 for ( ; (p = &clientobj_next(ClientMutex)->mutex) != 0; )
sewardjaf44c822007-11-25 14:01:38 +0000444 {
bart4bb53d82008-02-28 19:06:34 +0000445 if (p->owner == tid && p->recursion_count > 0)
sewardjaf44c822007-11-25 14:01:38 +0000446 {
bart5357fcb2008-02-27 15:46:00 +0000447 MutexErrInfo MEI
bart4bb53d82008-02-28 19:06:34 +0000448 = { p->a1, p->recursion_count, p->owner };
bart5357fcb2008-02-27 15:46:00 +0000449 VG_(maybe_record_error)(VG_(get_running_tid)(),
450 MutexErr,
451 VG_(get_IP)(VG_(get_running_tid)()),
452 "Mutex still locked at thread exit",
453 &MEI);
sewardjaf44c822007-11-25 14:01:38 +0000454 p->owner = VG_INVALID_THREADID;
455 }
456 }
457}
458
sewardjaf44c822007-11-25 14:01:38 +0000459ULong get_mutex_lock_count(void)
460{
461 return s_mutex_lock_count;
462}