Message134058
| Author |
vstinner |
| Recipients |
brett.cannon, jcea, pitrou, vstinner |
| Date |
2011年04月19日.14:20:17 |
| SpamBayes Score |
5.399178e-07 |
| Marked as misclassified |
No |
| Message-id |
<1303222823.25.0.695819723856.issue11863@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Patch removing cpthread, pth, lwp and solaris thread implementations. The patch on configure.in, around the following diff, is invalid:
----
AC_DEFINE(_REENTRANT)
- AC_CHECK_HEADER(cthreads.h, [AC_DEFINE(WITH_THREAD)
- AC_DEFINE(C_THREADS)
- AC_DEFINE(HURD_C_THREADS, 1,
- [Define if you are using Mach cthreads directly under /include])
- LIBS="$LIBS -lthreads"
- THREADOBJ="Python/thread.o"],[
- AC_CHECK_HEADER(mach/cthreads.h, [AC_DEFINE(WITH_THREAD)
- AC_DEFINE(C_THREADS)
- AC_DEFINE(MACH_C_THREADS, 1,
- [Define if you are using Mach cthreads under mach /])
- THREADOBJ="Python/thread.o"],[
# Just looking for pthread_create in libpthread is not enough:
# on HP/UX, pthread.h renames pthread_create to a different symbol name.
# So we really have to include pthread.h, and then link.
----
autoconf will have to be run to update configure.
I am not sure that the patch removes all code related to these threads. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2011年04月19日 14:20:23 | vstinner | set | recipients:
+ vstinner, brett.cannon, jcea, pitrou |
| 2011年04月19日 14:20:23 | vstinner | set | messageid: <1303222823.25.0.695819723856.issue11863@psf.upfronthosting.co.za> |
| 2011年04月19日 14:20:19 | vstinner | link | issue11863 messages |
| 2011年04月19日 14:20:18 | vstinner | create |
|