This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2011年04月19日 09:45 by vstinner, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (3) | |||
|---|---|---|---|
| msg134029 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2011年04月19日 09:45 | |
Python/thread.c contains the following messages: #ifdef SGI_THREADS #error SGI Irix threads are now unsupported, and code will be removed in 3.3. #include "thread_sgi.h" #endif #ifdef SUN_LWP #error SunOS lightweight processes are now unsupported, and code will be removed in 3.3. #include "thread_lwp.h" #endif #ifdef HAVE_PTH #error GNU pth threads are now unsupported, and code will be removed in 3.3. #include "thread_pth.h" #undef _POSIX_THREADS #endif #ifdef C_THREADS #error Mach C Threads are now unsupported, and code will be removed in 3.3. #include "thread_cthread.h" #endif |
|||
| msg134030 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2011年04月19日 09:55 | |
Oh, the file contains also a reference to a missing file: #ifdef PLAN9_THREADS #include "thread_plan9.h" #endif But I don't see where PLAN9_THREADS is defined. |
|||
| msg134050 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2011年04月19日 13:13 | |
Oh, this is a duplicate of #11863. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:16 | admin | set | github: 56085 |
| 2011年04月19日 13:13:19 | vstinner | set | status: open -> closed resolution: duplicate messages: + msg134050 |
| 2011年04月19日 11:14:30 | jcea | set | nosy:
+ jcea |
| 2011年04月19日 09:55:03 | vstinner | set | messages: + msg134030 |
| 2011年04月19日 09:45:43 | vstinner | create | |