|
[Valgrind-developers] valgrind: r12459: Darwin: Fix a copy/paste
error that was introduced in r12458
From: <sv...@va...> - 2012-03-26 18:13:36
|
bart 2012-03-26 19:13:29 +0100 (Mon, 26 Mar 2012)
New Revision: 12459
Log:
Darwin: Fix a copy/paste error that was introduced in r12458
Modified files:
trunk/coregrind/m_syswrap/syswrap-darwin.c
Modified: trunk/coregrind/m_syswrap/syswrap-darwin.c (+1 -1)
===================================================================
--- trunk/coregrind/m_syswrap/syswrap-darwin.c 2012-03-25 18:51:59 +01:00 (rev 12458)
+++ trunk/coregrind/m_syswrap/syswrap-darwin.c 2012-03-26 19:13:29 +01:00 (rev 12459)
@@ -6483,7 +6483,7 @@
// should be in pthread_hijack instead, just before the call to
// start_thread_NORETURN(), call_on_new_stack_0_1(), but we don't have the
// parent tid value there...
- vg_assert(VG_(owns_BigLock_LL)(ptid));
+ vg_assert(VG_(owns_BigLock_LL)(tid));
VG_TRACK ( pre_thread_ll_create, tid, tst->tid );
}
|