[pypy-commit] pypy fast-gil: Add an "XXX implement me" in the Windows section

arigo noreply at buildbot.pypy.org
Sun Mar 9 10:59:43 CET 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: fast-gil
Changeset: r69818:e7c59506542b
Date: 2014-03-09 10:59 +0100
http://bitbucket.org/pypy/pypy/changeset/e7c59506542b/

Log:	Add an "XXX implement me" in the Windows section

diff --git a/rpython/translator/c/src/thread_nt.c b/rpython/translator/c/src/thread_nt.c
--- a/rpython/translator/c/src/thread_nt.c
+++ b/rpython/translator/c/src/thread_nt.c
@@ -243,3 +243,8 @@
     EnterCriticalSection(&mutex_gil);
     InterlockedDecrement(&pending_acquires);
 }
+
+#ifdef RPY_FASTGIL
+# error "XXX implement me"
+InterlockedExchangePointer
+#endif


More information about the pypy-commit mailing list