summaryrefslogtreecommitdiff
path: root/Python/thread.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2009-01-12 08:21:03 +0000
committerMartin v. Löwis <martin@v.loewis.de>2009-01-12 08:21:03 +0000
commit63e391fd7b2df77117ab38161e0f8ac9ff6c5d21 (patch)
treefa349d6f8d62ebbf9b9ceab48bbbaa55b771174e /Python/thread.c
parentbacdbec251c64c408e7a5bbd9ca5704588194450 (diff)
downloadcpython-63e391fd7b2df77117ab38161e0f8ac9ff6c5d21.tar.gz
Merged revisions 68455,68476,68542 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r68455 | kristjan.jonsson | 2009-01-09 21:03:27 +0100 (Fr, 09 Jan 2009) | 1 line Issue 3582. Improved thread support and TLS for Windows ........ r68476 | kristjan.jonsson | 2009-01-10 13:14:31 +0100 (Sa, 10 Jan 2009) | 1 line Issue 4906: Preserve windows error state across PyThread_get_key_value ........ r68542 | martin.v.loewis | 2009-01-12 09:11:24 +0100 (Mo, 12 Jan 2009) | 2 lines Issue #4893: Use NT threading on CE. ........
Diffstat (limited to 'Python/thread.c')
-rw-r--r--Python/thread.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/thread.c b/Python/thread.c
index d8cadba367..1d7bed972f 100644
--- a/Python/thread.c
+++ b/Python/thread.c
@@ -133,10 +133,6 @@ static size_t _pythread_stacksize = 0;
#include "thread_os2.h"
#endif
-#ifdef WINCE_THREADS
-#include "thread_wince.h"
-#endif
-
#ifdef PLAN9_THREADS
#include "thread_plan9.h"
#endif