From 7c2b66cc02a1c5e3433885640b7d4bd9e0ca5b8a Mon Sep 17 00:00:00 2001 From: "Martin v. Löwis" Date: Mon, 12 Jan 2009 08:21:03 +0000 Subject: 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. ........ --- Python/thread.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Python/thread.c') diff --git a/Python/thread.c b/Python/thread.c index d8cadba3670..1d7bed972ff 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 -- cgit v1.2.3