Author: Armin Rigo <[email protected]>
Branch: fast-gil
Changeset: r69829:d62d573ed694
Date: 2014-03-09 13:56 +0100
http://bitbucket.org/pypy/pypy/changeset/d62d573ed694/
Log: Fix
diff --git a/rpython/translator/c/src/thread_pthread.c
b/rpython/translator/c/src/thread_pthread.c
--- a/rpython/translator/c/src/thread_pthread.c
+++ b/rpython/translator/c/src/thread_pthread.c
@@ -588,9 +588,9 @@
static void *rpy_fastgil = NULL;
-Signed RPyFetchFastGil(void)
+long RPyFetchFastGil(void)
{
- return (Signed)(&rpy_fastgil);
+ return (long)(&rpy_fastgil);
}
static inline void *atomic_xchg(void **ptr, void *value)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit