diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2009-01-12 08:11:24 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2009-01-12 08:11:24 +0000 |
commit | e3422fae8a38b04c216b7c777ad10694073c4937 (patch) | |
tree | b32988521bf437775895584719ba0e61f6c358ce /Python/thread.c | |
parent | 1b3bef21b061a1543591d6d67d5501a4469504e9 (diff) | |
download | cpython-git-e3422fae8a38b04c216b7c777ad10694073c4937.tar.gz |
Issue #4893: Use NT threading on CE.
Diffstat (limited to 'Python/thread.c')
-rw-r--r-- | Python/thread.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/thread.c b/Python/thread.c index 03580f382d..ff571d837a 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -137,10 +137,6 @@ static size_t _pythread_stacksize = 0; #include "thread_beos.h" #endif -#ifdef WINCE_THREADS -#include "thread_wince.h" -#endif - #ifdef PLAN9_THREADS #include "thread_plan9.h" #endif |