|
From: <sv...@va...> - 2011-07-26 23:06:59
|
Author: sewardj
Date: 2011-07-27 00:02:10 +0100 (Wed, 27 Jul 2011)
New Revision: 11921
Log:
Un-break the build on OSX following r11910.
Modified:
trunk/coregrind/m_syswrap/syswrap-darwin.c
Modified: trunk/coregrind/m_syswrap/syswrap-darwin.c
===================================================================
--- trunk/coregrind/m_syswrap/syswrap-darwin.c 2011-07-26 19:30:28 UTC (rev 11920)
+++ trunk/coregrind/m_syswrap/syswrap-darwin.c 2011-07-26 23:02:10 UTC (rev 11921)
@@ -105,7 +105,7 @@
tid, &tid);
/* Make sure error reporting is enabled in the new thread. */
- ctst->err_disablement_level = 0;
+ tst->err_disablement_level = 0;
VG_TRACK(pre_thread_first_insn, tid);
@@ -234,7 +234,7 @@
thread slot is safe in this respect if later reallocated. This
should be unnecessary since the flag should be cleared when the
slot is reallocated, in thread_wrapper(). */
- if (tst->disablement_level > 0) {
+ if (tst->err_disablement_level > 0) {
VG_(umsg)(
"WARNING: exiting thread has error reporting disabled.\n"
"WARNING: possibly as a result of some mistake in the use\n"
|