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.

Author loewis
Recipients
Date 2007-01-29.22:25:42
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Right. To prevent the simultaneous invocation of Py_AddPendingCall from multiple threads, two alternatives are possible:
a) protect the routine with a thread mutex, if threading is available
b) use pthread_kill in threads other than the main thread (as I proposed earlier); those other threads then wouldn't call Py_AddPendingCall anymore
History
Date User Action Args
2007-08-23 15:54:44adminlinkissue1564547 messages
2007-08-23 15:54:44admincreate