|
From: <sv...@va...> - 2007-09-10 13:47:20
|
Author: sewardj
Date: 2007-09-10 14:47:20 +0100 (Mon, 10 Sep 2007)
New Revision: 6809
Log:
Darn again. This should also have been included in r6802
(For VG_(record_ExeContext) et al, add a new parameter ...)
Modified:
branches/THRCHECK/massif/ms_main.c
Modified: branches/THRCHECK/massif/ms_main.c
===================================================================
--- branches/THRCHECK/massif/ms_main.c 2007-09-10 13:35:02 UTC (rev 6808)
+++ branches/THRCHECK/massif/ms_main.c 2007-09-10 13:47:20 UTC (rev 6809)
@@ -431,7 +431,8 @@
// it is enough.
overestimate = 2;
while (True) {
- n_ips = VG_(get_StackTrace)( tid, ips, clo_depth + overestimate );
+ n_ips = VG_(get_StackTrace)( tid, ips, clo_depth + overestimate,
+ 0/*first_ip_delta*/ );
// Now we add a dummy "unknown" IP at the end. This is only used if we
// run out of IPs before hitting clo_depth. It's done to ensure the
|