[Python-checkins] CVS: python/dist/src/Python thread_pth.h,NONE,2.1 thread.c,2.28,2.29
Guido van Rossum
python-dev@python.org
Mon, 8 May 2000 09:36:52 -0400 (EDT)
- Previous message: [Python-checkins] CVS: python/dist/src/Include Python.h,2.15,2.16
- Next message: [Python-checkins] CVS: python/dist/src acconfig.h,1.28,1.29 config.h.in,2.53,2.54 configure,1.111,1.112 configure.in,1.119,1.120
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /projects/cvsroot/python/dist/src/Python
In directory eric:/projects/python/develop/guido/src/Python
Modified Files:
thread.c
Added Files:
thread_pth.h
Log Message:
Andy Dustman: add GNU pth user-space thread support.
Index: thread.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Python/thread.c,v
retrieving revision 2.28
retrieving revision 2.29
diff -C2 -r2.28 -r2.29
*** thread.c 2000年04月24日 15:06:51 2.28
--- thread.c 2000年05月08日 13:36:49 2.29
***************
*** 151,156 ****
--- 151,160 ----
#endif
+ #ifdef _GNU_PTH
+ #include "thread_pth.h"
+ #else
#ifdef _POSIX_THREADS
#include "thread_pthread.h"
+ #endif
#endif
- Previous message: [Python-checkins] CVS: python/dist/src/Include Python.h,2.15,2.16
- Next message: [Python-checkins] CVS: python/dist/src acconfig.h,1.28,1.29 config.h.in,2.53,2.54 configure,1.111,1.112 configure.in,1.119,1.120
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]