Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r66992:f1a61a8e481b
Date: 2013-09-17 15:23 -0700
http://bitbucket.org/pypy/pypy/changeset/f1a61a8e481b/
Log: threadsafe -> releasegil
diff --git a/pypy/module/_posixsubprocess/interp_subprocess.py
b/pypy/module/_posixsubprocess/interp_subprocess.py
--- a/pypy/module/_posixsubprocess/interp_subprocess.py
+++ b/pypy/module/_posixsubprocess/interp_subprocess.py
@@ -44,17 +44,17 @@
lltype.Ptr(lltype.FuncType([rffi.VOIDP], rffi.INT)), rffi.VOIDP],
lltype.Void,
compilation_info=eci,
- threadsafe=True)
+ releasegil=True)
c_cloexec_pipe = rffi.llexternal(
'pypy_subprocess_cloexec_pipe',
[rffi.CArrayPtr(rffi.INT)], rffi.INT,
compilation_info=eci,
- threadsafe=True)
+ releasegil=True)
c_init = rffi.llexternal(
'pypy_subprocess_init',
[], lltype.Void,
compilation_info=eci,
- threadsafe=True)
+ releasegil=True)
class PreexecCallback:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit