[pypy-svn] r70923 - pypy/branch/gc-huge-list/pypy/rpython/lltypesystem

fijal at codespeak.net fijal at codespeak.net
Wed Jan 27 16:02:42 CET 2010


Author: fijal
Date: Wed Jan 27 16:02:41 2010
New Revision: 70923

Modified:
   pypy/branch/gc-huge-list/pypy/rpython/lltypesystem/llarena.py
Log:
(arigo, fijal) Fix translation


Modified: pypy/branch/gc-huge-list/pypy/rpython/lltypesystem/llarena.py
==============================================================================
--- pypy/branch/gc-huge-list/pypy/rpython/lltypesystem/llarena.py	(original)
+++ pypy/branch/gc-huge-list/pypy/rpython/lltypesystem/llarena.py	Wed Jan 27 16:02:41 2010
@@ -526,6 +526,14 @@
                   llfakeimpl=arena_reserve,
                   sandboxsafe=True)
 
+def llimpl_arena_reserve_array_of_bytes(addr, size):
+    pass
+register_external(arena_reserve_array_of_bytes, [llmemory.Address, int], None,
+                  'll_arena.arena_reserve_array_of_bytes',
+                  llimpl=llimpl_arena_reserve_array_of_bytes,
+                  llfakeimpl=arena_reserve_array_of_bytes,
+                  sandboxsafe=True)
+
 def llimpl_arena_shrink_obj(addr, newsize):
     pass
 register_external(arena_shrink_obj, [llmemory.Address, int], None,



More information about the Pypy-commit mailing list