[pypy-svn] pypy jit-shadowstack: Fix the value according to the comment just below.

amauryfa commits-noreply at bitbucket.org
Fri Apr 1 00:27:03 CEST 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: jit-shadowstack
Changeset: r43063:46f58d4c45e3
Date: 2011-04-01 00:23 +0200
http://bitbucket.org/pypy/pypy/changeset/46f58d4c45e3/

Log:	Fix the value according to the comment just below.

	(although 1Gb of L2 cache would certainly be nice)

diff --git a/pypy/rpython/memory/gc/env.py b/pypy/rpython/memory/gc/env.py
--- a/pypy/rpython/memory/gc/env.py
+++ b/pypy/rpython/memory/gc/env.py
@@ -259,7 +259,7 @@
 get_L2cache = globals().get('get_L2cache_' + sys.platform,
                             lambda: -1)     # implement me for other platforms
 
-NURSERY_SIZE_UNKNOWN_CACHE = 1024*1024*1024
+NURSERY_SIZE_UNKNOWN_CACHE = 1024*1024
 # arbitrary 1M. better than default of 131k for most cases
 # in case it didn't work
 


More information about the Pypy-commit mailing list