|
From: <sv...@va...> - 2007-09-09 21:29:49
|
Author: sewardj
Date: 2007-09-09 22:29:50 +0100 (Sun, 09 Sep 2007)
New Revision: 6803
Log:
Darn. This should have been included in r6802
(For VG_(record_ExeContext) et al, add a new parameter ...)
Modified:
branches/THRCHECK/coregrind/m_syswrap/syswrap-generic.c
Modified: branches/THRCHECK/coregrind/m_syswrap/syswrap-generic.c
===================================================================
--- branches/THRCHECK/coregrind/m_syswrap/syswrap-generic.c 2007-09-09 21:22:48 UTC (rev 6802)
+++ branches/THRCHECK/coregrind/m_syswrap/syswrap-generic.c 2007-09-09 21:29:50 UTC (rev 6803)
@@ -522,7 +522,7 @@
i->fd = fd;
i->pathname = VG_(arena_strdup)(VG_AR_CORE, pathname);
- i->where = (tid == -1) ? NULL : VG_(record_ExeContext)(tid);
+ i->where = (tid == -1) ? NULL : VG_(record_ExeContext)(tid, 0/*first_ip_delta*/);
}
// Record opening of an fd, and find its name.
|