[pypy-svn] r31715 - pypy/branch/no-zeroing-assumption/pypy/translator/c

mwh at codespeak.net mwh at codespeak.net
Sun Aug 27 12:57:22 CEST 2006


Author: mwh
Date: Sun Aug 27 12:57:21 2006
New Revision: 31715

Modified:
   pypy/branch/no-zeroing-assumption/pypy/translator/c/gc.py
Log:
fix the none gc policy on the branch.
(i still think there's no real excuse for code like this...)


Modified: pypy/branch/no-zeroing-assumption/pypy/translator/c/gc.py
==============================================================================
--- pypy/branch/no-zeroing-assumption/pypy/translator/c/gc.py	(original)
+++ pypy/branch/no-zeroing-assumption/pypy/translator/c/gc.py	Sun Aug 27 12:57:21 2006
@@ -350,6 +350,7 @@
 class NoneGcPolicy(BoehmGcPolicy):
 
     zero_malloc = RefcountingGcPolicy.zero_malloc.im_func
+    malloc = RefcountingGcPolicy.malloc.im_func
     gc_libraries = RefcountingGcPolicy.gc_libraries.im_func
     gc_startup_code = RefcountingGcPolicy.gc_startup_code.im_func
 



More information about the Pypy-commit mailing list