[pypy-commit] pypy sandbox-2: More sandboxsafe's

arigo pypy.commits at gmail.com
Fri Aug 9 09:21:56 EDT 2019


Author: Armin Rigo <arigo at tunes.org>
Branch: sandbox-2
Changeset: r97118:2bfca02e69de
Date: 2019-08-09 15:21 +0200
http://bitbucket.org/pypy/pypy/changeset/2bfca02e69de/

Log:	More sandboxsafe's

diff --git a/rpython/rtyper/lltypesystem/rffi.py b/rpython/rtyper/lltypesystem/rffi.py
--- a/rpython/rtyper/lltypesystem/rffi.py
+++ b/rpython/rtyper/lltypesystem/rffi.py
@@ -1405,12 +1405,14 @@
             lltype.Void,
             releasegil=False,
             calling_conv='c',
+            sandboxsafe=True,
         )
 c_memset = llexternal("memset",
             [VOIDP, lltype.Signed, SIZE_T],
             lltype.Void,
             releasegil=False,
             calling_conv='c',
+            sandboxsafe=True,
         )
 
 


More information about the pypy-commit mailing list