[pypy-commit] pypy win32-cleanup2: experiment with llexternal definition

mattip noreply at buildbot.pypy.org
Mon Apr 16 16:50:25 CEST 2012


Author: Matti Picus <matti.picus at gmail.com>
Branch: win32-cleanup2
Changeset: r54425:db0e69d3f9ee
Date: 2012-04-16 17:49 +0300
http://bitbucket.org/pypy/pypy/changeset/db0e69d3f9ee/

Log:	experiment with llexternal definition

diff --git a/pypy/rlib/rposix.py b/pypy/rlib/rposix.py
--- a/pypy/rlib/rposix.py
+++ b/pypy/rlib/rposix.py
@@ -107,7 +107,7 @@
     validate_fd = rffi.llexternal(
         "_PyVerify_fd", [rffi.INT], rffi.INT,
         _callable=validate_fd_emulator, compilation_info=eci,
-        _nowrapper=True, elidable_function=True, sandboxsafe=True,
+        _nowrapper=True, elidable_function=False, sandboxsafe=False,
         )
 else:
     def validate_fd(fd):


More information about the pypy-commit mailing list