[pypy-svn] r70942 - pypy/branch/gc-huge-list/pypy/rpython/memory/gc

fijal at codespeak.net fijal at codespeak.net
Thu Jan 28 11:48:11 CET 2010


Author: fijal
Date: Thu Jan 28 11:48:11 2010
New Revision: 70942

Modified:
   pypy/branch/gc-huge-list/pypy/rpython/memory/gc/hybrid.py
Log:
Kill the comment which is no longer True


Modified: pypy/branch/gc-huge-list/pypy/rpython/memory/gc/hybrid.py
==============================================================================
--- pypy/branch/gc-huge-list/pypy/rpython/memory/gc/hybrid.py	(original)
+++ pypy/branch/gc-huge-list/pypy/rpython/memory/gc/hybrid.py	Thu Jan 28 11:48:11 2010
@@ -571,10 +571,6 @@
     def remember_pointer_to_nursery(self, addr_struct, offset):
         hdr = self.header(addr_struct)
         if hdr.tid & GCFLAG_CARDMARKS:
-            # XXX we might want to store this object in the list of old
-            #     objects pointing to young. For now we simply walk all
-            #     huge lists possibly containing gc pointers for each
-            #     nursery collection
             # Mark the correct card, don't clear GCFLAG_NO_YOUNG_PTRS flag.
             # Note that 'offset' does not include the size_gc_header.
             size_gc_header = self.gcheaderbuilder.size_gc_header



More information about the Pypy-commit mailing list