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 siddhesh
Recipients siddhesh
Date 2018-03-06.18:56:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1520362573.83.0.467229070634.issue33015@psf.upfronthosting.co.za>
In-reply-to
Content
The PyThread_start_new_thread function takes a void (*)(void *) as the function argument, which does not match with the pthread_create callback which has type void *(*)(void *).  I've got a fix for this that adds a wrapper function of the right type that subsequently calls the function passed to PyThread_start_new_thread.

PR coming up.
History
Date User Action Args
2018-03-06 18:56:13siddheshsetrecipients: + siddhesh
2018-03-06 18:56:13siddheshsetmessageid: <1520362573.83.0.467229070634.issue33015@psf.upfronthosting.co.za>
2018-03-06 18:56:13siddheshlinkissue33015 messages
2018-03-06 18:56:13siddheshcreate