[pypy-svn] r58502 - pypy/branch/gc-experiments/pypy/rpython/memory/gc

fijal at codespeak.net fijal at codespeak.net
Tue Sep 30 14:02:44 CEST 2008


Author: fijal
Date: Tue Sep 30 14:02:41 2008
New Revision: 58502

Modified:
   pypy/branch/gc-experiments/pypy/rpython/memory/gc/markcompact.py
Log:
Comment


Modified: pypy/branch/gc-experiments/pypy/rpython/memory/gc/markcompact.py
==============================================================================
--- pypy/branch/gc-experiments/pypy/rpython/memory/gc/markcompact.py	(original)
+++ pypy/branch/gc-experiments/pypy/rpython/memory/gc/markcompact.py	Tue Sep 30 14:02:41 2008
@@ -39,6 +39,10 @@
     HDR = lltype.Struct('header', ('tid', lltype.Signed),
                         ('forward_ptr', llmemory.Address))
 
+    # XXX probably we need infinite (ie 4G) amount of memory here
+    # and we'll keep all pages shared. The question is what we do
+    # with tests which create all llarenas
+
     TRANSLATION_PARAMS = {'space_size': 16*1024*1024} # XXX adjust
 
     def __init__(self, chunk_size=DEFAULT_CHUNK_SIZE, space_size=16*(1024**2)):



More information about the Pypy-commit mailing list