Message134058
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. |
|
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 | |
|