|
From: <sv...@va...> - 2005-06-09 13:56:14
|
Author: sewardj
Date: 2005-06-09 14:56:07 +0100 (Thu, 09 Jun 2005)
New Revision: 3859
Log:
Increase the number of auxmaps from 500 to 20000. This should be
enough to cover 1.25GB of auxiliary address space. This is all still
a hack until such time as the address space manager is rewritten, but
should make things work more reliably on amd64-linux for now.
Modified:
trunk/memcheck/mc_main.c
Modified: trunk/memcheck/mc_main.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/memcheck/mc_main.c 2005-06-09 13:23:56 UTC (rev 3858)
+++ trunk/memcheck/mc_main.c 2005-06-09 13:56:07 UTC (rev 3859)
@@ -206,7 +206,7 @@
AuxMapEnt;
=20
/* An expanding array of AuxMapEnts. */
-#define N_AUXMAPS 500 /* HACK */
+#define N_AUXMAPS 20000 /* HACK */
static AuxMapEnt hacky_auxmaps[N_AUXMAPS];
static Int auxmap_size =3D N_AUXMAPS;
static Int auxmap_used =3D 0;
|