From eb920f9f852f4413387ffb480bb0a1c762dbf7eb Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 25 Mar 2002 02:02:52 +0000 Subject: [PATCH] Change VG_N_EPOCHS to 20000 to avoid resolution loss for long-running loops. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@33 --- coregrind/vg_transtab.c | 2 +- vg_transtab.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/coregrind/vg_transtab.c b/coregrind/vg_transtab.c index b93fe40dff..1580f03928 100644 --- a/coregrind/vg_transtab.c +++ b/coregrind/vg_transtab.c @@ -63,7 +63,7 @@ /* The number of age steps we track. 0 means the current epoch, N_EPOCHS-1 means used the epoch N_EPOCHS-1 or more ago. */ -#define VG_N_EPOCHS /*2000*/ 4000 +#define VG_N_EPOCHS /*2000*/ /*4000*/ 20000 /* This TT entry is empty. */ #define VG_TTE_EMPTY ((Addr)1) diff --git a/vg_transtab.c b/vg_transtab.c index b93fe40dff..1580f03928 100644 --- a/vg_transtab.c +++ b/vg_transtab.c @@ -63,7 +63,7 @@ /* The number of age steps we track. 0 means the current epoch, N_EPOCHS-1 means used the epoch N_EPOCHS-1 or more ago. */ -#define VG_N_EPOCHS /*2000*/ 4000 +#define VG_N_EPOCHS /*2000*/ /*4000*/ 20000 /* This TT entry is empty. */ #define VG_TTE_EMPTY ((Addr)1) -- 2.47.3