[pypy-commit] pypy default: dos2unix a file

amauryfa noreply at buildbot.pypy.org
Sat Jul 21 20:32:45 CEST 2012


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: 
Changeset: r56377:1b48c80572ab
Date: 2012-07-21 20:07 +0200
http://bitbucket.org/pypy/pypy/changeset/1b48c80572ab/

Log:	dos2unix a file

diff --git a/pypy/module/cpyext/include/pythread.h b/pypy/module/cpyext/include/pythread.h
--- a/pypy/module/cpyext/include/pythread.h
+++ b/pypy/module/cpyext/include/pythread.h
@@ -1,28 +1,28 @@
-#ifndef Py_PYTHREAD_H
-#define Py_PYTHREAD_H
-
-#define WITH_THREAD
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-typedef void *PyThread_type_lock;
-#define WAIT_LOCK	1
-#define NOWAIT_LOCK	0
-
-/* Thread Local Storage (TLS) API */
-PyAPI_FUNC(int) PyThread_create_key(void);
-PyAPI_FUNC(void) PyThread_delete_key(int);
-PyAPI_FUNC(int) PyThread_set_key_value(int, void *);
-PyAPI_FUNC(void *) PyThread_get_key_value(int);
-PyAPI_FUNC(void) PyThread_delete_key_value(int key);
-
-/* Cleanup after a fork */
-PyAPI_FUNC(void) PyThread_ReInitTLS(void);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
+#ifndef Py_PYTHREAD_H
+#define Py_PYTHREAD_H
+
+#define WITH_THREAD
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef void *PyThread_type_lock;
+#define WAIT_LOCK	1
+#define NOWAIT_LOCK	0
+
+/* Thread Local Storage (TLS) API */
+PyAPI_FUNC(int) PyThread_create_key(void);
+PyAPI_FUNC(void) PyThread_delete_key(int);
+PyAPI_FUNC(int) PyThread_set_key_value(int, void *);
+PyAPI_FUNC(void *) PyThread_get_key_value(int);
+PyAPI_FUNC(void) PyThread_delete_key_value(int key);
+
+/* Cleanup after a fork */
+PyAPI_FUNC(void) PyThread_ReInitTLS(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif


More information about the pypy-commit mailing list