[pypy-svn] r77902 - pypy/branch/32ptr-on-64bit/pypy/translator/c/src

arigo at codespeak.net arigo at codespeak.net
Thu Oct 14 11:36:31 CEST 2010


Author: arigo
Date: Thu Oct 14 11:36:30 2010
New Revision: 77902

Modified:
   pypy/branch/32ptr-on-64bit/pypy/translator/c/src/linuxmemchk.c
Log:
Update the limit to a recently-useful number.


Modified: pypy/branch/32ptr-on-64bit/pypy/translator/c/src/linuxmemchk.c
==============================================================================
--- pypy/branch/32ptr-on-64bit/pypy/translator/c/src/linuxmemchk.c	(original)
+++ pypy/branch/32ptr-on-64bit/pypy/translator/c/src/linuxmemchk.c	Thu Oct 14 11:36:30 2010
@@ -7,7 +7,7 @@
 #include <fcntl.h>
 #define PAGESIZE 4096
 #ifndef MALLOC_BIGBUFFER
-# define MALLOC_BIGBUFFER   (PAGESIZE*32768)   /* 128MB */
+# define MALLOC_BIGBUFFER   (PAGESIZE*32768*14)   /* 1.75GB */
 #endif
 
 



More information about the Pypy-commit mailing list