diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2009-01-12 08:21:03 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2009-01-12 08:21:03 (GMT) |
commit | 7c2b66cc02a1c5e3433885640b7d4bd9e0ca5b8a (patch) | |
tree | a297cecd34d06680c7a43487828c86114436f106 /Python/thread.c | |
parent | ec59d04fad3ffae1b0ce94d2872172398a012d16 (diff) | |
download | cpython-7c2b66cc02a1c5e3433885640b7d4bd9e0ca5b8a.zip cpython-7c2b66cc02a1c5e3433885640b7d4bd9e0ca5b8a.tar.gz cpython-7c2b66cc02a1c5e3433885640b7d4bd9e0ca5b8a.tar.bz2 |
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.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/thread.c b/Python/thread.c index d8cadba..1d7bed9 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 |