blob: 1178a3a110fb06d3970743ae854914c712ce6363 [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
bart00344642008-03-01 15:27:41 +0000140/** Called before pthread_mutex_init(). */
sewardj721ad7b2007-11-30 08:30:29 +0000141struct mutex_info*
142mutex_init(const Addr mutex, const SizeT size, const MutexT mutex_type)
sewardjaf44c822007-11-25 14:01:38 +0000143{
bart00344642008-03-01 15:27:41 +0000144 struct mutex_info* p;
sewardjaf44c822007-11-25 14:01:38 +0000145
sewardjaf44c822007-11-25 14:01:38 +0000146 if (s_trace_mutex)
147 {
bart3b1ee452008-02-29 19:28:15 +0000148 VG_(message)(Vg_UserMsg,
149 "[%d/%d] mutex_init %s 0x%lx",
150 VG_(get_running_tid)(),
151 thread_get_running_tid(),
sewardj347eeba2008-01-21 14:19:07 +0000152 mutex_type_name(mutex_type),
sewardjaf44c822007-11-25 14:01:38 +0000153 mutex);
154 }
155
bart00344642008-03-01 15:27:41 +0000156 if (mutex_type == mutex_type_invalid_mutex)
157 {
158 GenericErrInfo GEI;
159 VG_(maybe_record_error)(VG_(get_running_tid)(),
160 GenericErr,
161 VG_(get_IP)(VG_(get_running_tid)()),
bart777f7fe2008-03-02 17:43:18 +0000162 "Not a mutex",
bart00344642008-03-01 15:27:41 +0000163 &GEI);
164 return 0;
165 }
166
167 p = mutex_get(mutex);
168 if (p)
sewardj347eeba2008-01-21 14:19:07 +0000169 {
170 const ThreadId vg_tid = VG_(get_running_tid)();
171 MutexErrInfo MEI
bart00344642008-03-01 15:27:41 +0000172 = { p->a1, p->recursion_count, p->owner };
sewardj347eeba2008-01-21 14:19:07 +0000173 VG_(maybe_record_error)(vg_tid,
174 MutexErr,
175 VG_(get_IP)(vg_tid),
176 "Mutex reinitialization",
177 &MEI);
bart00344642008-03-01 15:27:41 +0000178 return p;
sewardj347eeba2008-01-21 14:19:07 +0000179 }
bart00344642008-03-01 15:27:41 +0000180 p = mutex_get_or_allocate(mutex, size, mutex_type);
sewardj347eeba2008-01-21 14:19:07 +0000181
bart00344642008-03-01 15:27:41 +0000182 return p;
sewardjaf44c822007-11-25 14:01:38 +0000183}
184
bart46d5f172008-02-28 19:49:37 +0000185/** Called after pthread_mutex_destroy(). */
sewardj347eeba2008-01-21 14:19:07 +0000186void mutex_post_destroy(const Addr mutex)
187{
bart72b751c2008-03-01 13:44:24 +0000188 struct mutex_info* p;
sewardj347eeba2008-01-21 14:19:07 +0000189
bart72b751c2008-03-01 13:44:24 +0000190 p = mutex_get(mutex);
191 if (p == 0)
192 {
193 GenericErrInfo GEI;
194 VG_(maybe_record_error)(VG_(get_running_tid)(),
195 GenericErr,
196 VG_(get_IP)(VG_(get_running_tid)()),
197 "Not a mutex",
198 &GEI);
199 return;
200 }
201
202 clientobj_remove(mutex, ClientMutex);
sewardj347eeba2008-01-21 14:19:07 +0000203}
204
bart8bba1f72008-02-27 16:13:05 +0000205/** Called before pthread_mutex_lock() is invoked. If a data structure for
206 * the client-side object was not yet created, do this now. Also check whether
207 * an attempt is made to lock recursively a synchronization object that must
208 * not be locked recursively.
209 */
210void mutex_pre_lock(const Addr mutex, const SizeT size, MutexT mutex_type)
211{
bart635cb162008-02-28 08:30:43 +0000212 struct mutex_info* p;
213
214 p = mutex_get(mutex);
bart00344642008-03-01 15:27:41 +0000215
216 if (s_trace_mutex)
217 {
218 VG_(message)(Vg_UserMsg,
219 "[%d/%d] pre_mutex_lock %s 0x%lx rc %d owner %d",
220 VG_(get_running_tid)(),
221 thread_get_running_tid(),
222 p ? mutex_get_typename(p) : "(?)",
223 mutex,
224 p ? p->recursion_count : 0,
225 p ? p->owner : VG_INVALID_THREADID);
226 }
227
228 if (mutex_type == mutex_type_invalid_mutex)
229 {
230 GenericErrInfo GEI;
231 VG_(maybe_record_error)(VG_(get_running_tid)(),
232 GenericErr,
233 VG_(get_IP)(VG_(get_running_tid)()),
bart777f7fe2008-03-02 17:43:18 +0000234 "Not a mutex",
bart00344642008-03-01 15:27:41 +0000235 &GEI);
236 return;
237 }
238
bart8bba1f72008-02-27 16:13:05 +0000239 if (p == 0)
240 {
bart00344642008-03-01 15:27:41 +0000241 p = mutex_init(mutex, size, mutex_type);
bart8bba1f72008-02-27 16:13:05 +0000242 }
bart635cb162008-02-28 08:30:43 +0000243
bart8bba1f72008-02-27 16:13:05 +0000244 tl_assert(p);
245
246 if (p->owner == thread_get_running_tid()
247 && p->recursion_count >= 1
248 && mutex_type != mutex_type_recursive_mutex)
249 {
bart4bb53d82008-02-28 19:06:34 +0000250 MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner };
bart8bba1f72008-02-27 16:13:05 +0000251 VG_(maybe_record_error)(VG_(get_running_tid)(),
252 MutexErr,
253 VG_(get_IP)(VG_(get_running_tid)()),
254 "Recursive locking not allowed",
255 &MEI);
256 }
257}
258
sewardjaf44c822007-11-25 14:01:38 +0000259/**
260 * Update mutex_info state when locking the pthread_mutex_t mutex.
261 * Note: this function must be called after pthread_mutex_lock() has been
262 * called, or a race condition is triggered !
263 */
bart777f7fe2008-03-02 17:43:18 +0000264void mutex_post_lock(const Addr mutex, const Bool took_lock)
sewardjaf44c822007-11-25 14:01:38 +0000265{
bart3b1ee452008-02-29 19:28:15 +0000266 const DrdThreadId drd_tid = thread_get_running_tid();
bart00344642008-03-01 15:27:41 +0000267 struct mutex_info* p;
268
269 p = mutex_get(mutex);
sewardjaf44c822007-11-25 14:01:38 +0000270
271 if (s_trace_mutex)
272 {
bart3b1ee452008-02-29 19:28:15 +0000273 VG_(message)(Vg_UserMsg,
274 "[%d/%d] post_mutex_lock %s 0x%lx rc %d owner %d",
275 VG_(get_running_tid)(),
sewardjaf44c822007-11-25 14:01:38 +0000276 drd_tid,
bart00344642008-03-01 15:27:41 +0000277 p ? mutex_get_typename(p) : "(?)",
sewardjaf44c822007-11-25 14:01:38 +0000278 mutex,
279 p ? p->recursion_count : 0,
280 p ? p->owner : VG_INVALID_THREADID);
281 }
282
bart777f7fe2008-03-02 17:43:18 +0000283 if (! p || ! took_lock)
284 return;
bart5357fcb2008-02-27 15:46:00 +0000285
sewardjaf44c822007-11-25 14:01:38 +0000286 if (p->recursion_count == 0)
287 {
288 p->owner = drd_tid;
289 s_mutex_lock_count++;
290 }
291 else if (p->owner != drd_tid)
292 {
bart3b1ee452008-02-29 19:28:15 +0000293 VG_(message)(Vg_UserMsg,
sewardjaf44c822007-11-25 14:01:38 +0000294 "The impossible happened: mutex 0x%lx is locked"
295 " simultaneously by two threads (recursion count %d,"
296 " owners %d and %d) !",
bart4bb53d82008-02-28 19:06:34 +0000297 p->a1, p->recursion_count, p->owner, drd_tid);
sewardj347eeba2008-01-21 14:19:07 +0000298 p->owner = drd_tid;
sewardjaf44c822007-11-25 14:01:38 +0000299 }
300 p->recursion_count++;
301
302 if (p->recursion_count == 1)
303 {
bartab7a6442008-02-25 19:46:14 +0000304 const DrdThreadId last_owner = p->owner;
305
sewardjaf44c822007-11-25 14:01:38 +0000306 if (last_owner != drd_tid && last_owner != DRD_INVALID_THREADID)
307 thread_combine_vc2(drd_tid, mutex_get_last_vc(mutex));
308 thread_new_segment(drd_tid);
309 }
sewardjaf44c822007-11-25 14:01:38 +0000310}
311
312/**
313 * Update mutex_info state when unlocking the pthread_mutex_t mutex.
314 * Note: this function must be called before pthread_mutex_unlock() is called,
315 * or a race condition is triggered !
bartb78312c2008-02-29 11:00:17 +0000316 * @return New value of the mutex recursion count.
sewardjaf44c822007-11-25 14:01:38 +0000317 * @param mutex Pointer to pthread_mutex_t data structure in the client space.
318 * @param tid ThreadId of the thread calling pthread_mutex_unlock().
319 * @param vc Pointer to the current vector clock of thread tid.
320 */
bart777f7fe2008-03-02 17:43:18 +0000321void mutex_unlock(const Addr mutex, const MutexT mutex_type)
sewardjaf44c822007-11-25 14:01:38 +0000322{
bartb78312c2008-02-29 11:00:17 +0000323 const DrdThreadId drd_tid = thread_get_running_tid();
324 const ThreadId vg_tid = VG_(get_running_tid)();
sewardjaf44c822007-11-25 14:01:38 +0000325 const VectorClock* const vc = thread_get_vc(drd_tid);
326 struct mutex_info* const p = mutex_get(mutex);
327
bart777f7fe2008-03-02 17:43:18 +0000328 if (s_trace_mutex)
sewardjaf44c822007-11-25 14:01:38 +0000329 {
bart3b1ee452008-02-29 19:28:15 +0000330 VG_(message)(Vg_UserMsg,
331 "[%d/%d] mutex_unlock %s 0x%lx rc %d",
332 vg_tid,
333 drd_tid,
bart777f7fe2008-03-02 17:43:18 +0000334 p ? mutex_get_typename(p) : "?",
sewardjaf44c822007-11-25 14:01:38 +0000335 mutex,
bart777f7fe2008-03-02 17:43:18 +0000336 p ? p->recursion_count : 0,
337 p ? p->owner : 0);
sewardjaf44c822007-11-25 14:01:38 +0000338 }
339
bart777f7fe2008-03-02 17:43:18 +0000340 if (p == 0 || mutex_type == mutex_type_invalid_mutex)
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);
bart777f7fe2008-03-02 17:43:18 +0000348 return;
bartab7a6442008-02-25 19:46:14 +0000349 }
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);
bart777f7fe2008-03-02 17:43:18 +0000359 return;
bart5357fcb2008-02-27 15:46:00 +0000360 }
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
bart777f7fe2008-03-02 17:43:18 +0000371 if (p->owner != drd_tid || p->recursion_count <= 0)
sewardjaf44c822007-11-25 14:01:38 +0000372 {
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),
bart777f7fe2008-03-02 17:43:18 +0000377 "Mutex not locked by calling thread",
sewardjaf44c822007-11-25 14:01:38 +0000378 &MEI);
bart777f7fe2008-03-02 17:43:18 +0000379 return;
sewardjaf44c822007-11-25 14:01:38 +0000380 }
bart777f7fe2008-03-02 17:43:18 +0000381 tl_assert(p->recursion_count > 0);
sewardjaf44c822007-11-25 14:01:38 +0000382 p->recursion_count--;
bart777f7fe2008-03-02 17:43:18 +0000383 tl_assert(p->recursion_count >= 0);
sewardj347eeba2008-01-21 14:19:07 +0000384
sewardjaf44c822007-11-25 14:01:38 +0000385 if (p->recursion_count == 0)
386 {
387 /* This pthread_mutex_unlock() call really unlocks the mutex. Save the */
388 /* current vector clock of the thread such that it is available when */
389 /* this mutex is locked again. */
bart301c3112008-02-24 18:22:37 +0000390 vc_assign(&p->vc, vc);
sewardjaf44c822007-11-25 14:01:38 +0000391
392 thread_new_segment(drd_tid);
393 }
sewardjaf44c822007-11-25 14:01:38 +0000394}
395
396const char* mutex_get_typename(struct mutex_info* const p)
397{
398 tl_assert(p);
sewardj721ad7b2007-11-30 08:30:29 +0000399
sewardj347eeba2008-01-21 14:19:07 +0000400 return mutex_type_name(p->mutex_type);
401}
402
403const char* mutex_type_name(const MutexT mt)
404{
405 switch (mt)
sewardjaf44c822007-11-25 14:01:38 +0000406 {
bart635cb162008-02-28 08:30:43 +0000407 case mutex_type_invalid_mutex:
408 return "invalid mutex";
bart5357fcb2008-02-27 15:46:00 +0000409 case mutex_type_recursive_mutex:
410 return "recursive mutex";
411 case mutex_type_errorcheck_mutex:
412 return "error checking mutex";
413 case mutex_type_default_mutex:
sewardjaf44c822007-11-25 14:01:38 +0000414 return "mutex";
sewardj721ad7b2007-11-30 08:30:29 +0000415 case mutex_type_spinlock:
sewardjaf44c822007-11-25 14:01:38 +0000416 return "spinlock";
417 default:
418 tl_assert(0);
419 }
420 return "?";
421}
422
bart5357fcb2008-02-27 15:46:00 +0000423/** Return true if the specified mutex is locked by any thread. */
424static Bool mutex_is_locked(struct mutex_info* const p)
425{
426 tl_assert(p);
427 return (p->recursion_count > 0);
428}
429
sewardjaf44c822007-11-25 14:01:38 +0000430Bool mutex_is_locked_by(const Addr mutex, const DrdThreadId tid)
431{
432 struct mutex_info* const p = mutex_get(mutex);
sewardjaf44c822007-11-25 14:01:38 +0000433 if (p)
434 {
435 return (p->recursion_count > 0 && p->owner == tid);
436 }
437 return False;
438}
439
440const VectorClock* mutex_get_last_vc(const Addr mutex)
441{
442 struct mutex_info* const p = mutex_get(mutex);
443 return p ? &p->vc : 0;
444}
445
446int mutex_get_recursion_count(const Addr mutex)
447{
448 struct mutex_info* const p = mutex_get(mutex);
449 tl_assert(p);
450 return p->recursion_count;
451}
452
453/**
bart301c3112008-02-24 18:22:37 +0000454 * Call this function when thread tid stops to exist, such that the
sewardjaf44c822007-11-25 14:01:38 +0000455 * "last owner" field can be cleared if it still refers to that thread.
sewardjaf44c822007-11-25 14:01:38 +0000456 */
bart301c3112008-02-24 18:22:37 +0000457void mutex_thread_delete(const DrdThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000458{
bart4bb53d82008-02-28 19:06:34 +0000459 struct mutex_info* p;
460
bart72b751c2008-03-01 13:44:24 +0000461 clientobj_resetiter();
462 for ( ; (p = &clientobj_next(ClientMutex)->mutex) != 0; )
sewardjaf44c822007-11-25 14:01:38 +0000463 {
bart4bb53d82008-02-28 19:06:34 +0000464 if (p->owner == tid && p->recursion_count > 0)
sewardjaf44c822007-11-25 14:01:38 +0000465 {
bart5357fcb2008-02-27 15:46:00 +0000466 MutexErrInfo MEI
bart4bb53d82008-02-28 19:06:34 +0000467 = { p->a1, p->recursion_count, p->owner };
bart5357fcb2008-02-27 15:46:00 +0000468 VG_(maybe_record_error)(VG_(get_running_tid)(),
469 MutexErr,
470 VG_(get_IP)(VG_(get_running_tid)()),
471 "Mutex still locked at thread exit",
472 &MEI);
sewardjaf44c822007-11-25 14:01:38 +0000473 p->owner = VG_INVALID_THREADID;
474 }
475 }
476}
477
sewardjaf44c822007-11-25 14:01:38 +0000478ULong get_mutex_lock_count(void)
479{
480 return s_mutex_lock_count;
481}
sewardj347eeba2008-01-21 14:19:07 +0000482
483
484/*
485 * Local variables:
486 * c-basic-offset: 3
487 * End:
488 */