[pypy-svn] r49361 - pypy/dist/pypy/rpython/memory/gc

arigo at codespeak.net arigo at codespeak.net
Wed Dec 5 08:40:32 CET 2007


Author: arigo
Date: Wed Dec  5 08:40:31 2007
New Revision: 49361

Modified:
   pypy/dist/pypy/rpython/memory/gc/base.py
Log:
Also document this.


Modified: pypy/dist/pypy/rpython/memory/gc/base.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/gc/base.py	(original)
+++ pypy/dist/pypy/rpython/memory/gc/base.py	Wed Dec  5 08:40:31 2007
@@ -46,6 +46,8 @@
         #  * malloc_fixedsize() and malloc_varsize() fallback to the above
         #  * coalloc_fixedsize_clear() and coalloc_varsize_clear() are optional
         # There is no non-clear version of coalloc for now.
+        # XXX: as of r49360, gctransformer.framework never inserts calls
+        # to malloc_varsize(), but always uses malloc_varsize_clear()
 
         size = self.fixed_size(typeid)
         needs_finalizer = bool(self.getfinalizer(typeid))



More information about the Pypy-commit mailing list