diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-06-11 06:22:31 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-06-11 06:22:31 (GMT) |
commit | f90ae20354ceb501f0ba0b6459df17f1a8005a47 (patch) | |
tree | f9aae742cfa33ba10af2ed8152aff802430f626c /Python/thread.c | |
parent | 7981ce576c719e291dc901a3463e725b6be3c50e (diff) | |
download | cpython-f90ae20354ceb501f0ba0b6459df17f1a8005a47.zip cpython-f90ae20354ceb501f0ba0b6459df17f1a8005a47.tar.gz cpython-f90ae20354ceb501f0ba0b6459df17f1a8005a47.tar.bz2 |
Patch #488073: AtheOS port.
Diffstat (limited to 'Python/thread.c')
-rw-r--r-- | Python/thread.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/thread.c b/Python/thread.c index b35a48b..1c5e685 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -133,6 +133,10 @@ void PyThread_init_thread(void) #include "thread_plan9.h" #endif +#ifdef ATHEOS_THREADS +#include "thread_atheos.h" +#endif + /* #ifdef FOOBAR_THREADS #include "thread_foobar.h" |