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 Alex Budovski
Recipients Alex Budovski
Date 2015-08-01.06:08:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1438409335.5.0.147877338692.issue24770@psf.upfronthosting.co.za>
In-reply-to
Content
This is a known issue, from the comment, but it is causing AVs for my embedded application when background threads are created, for example, by the _socket builtin module.

/* Undo the effect of Py_Initialize().

   Beware: if multiple interpreter and/or thread states exist, these
   are not wiped out; only the current thread and interpreter state
   are deleted.  But since everything else is deleted, those other
   interpreter and thread states should no longer be used.

   (XXX We should do better, e.g. wipe out all interpreters and
   threads.)

   Locking: as above.

*/

void
Py_Finalize(void)
History
Date User Action Args
2015-08-01 06:08:55Alex Budovskisetrecipients: + Alex Budovski
2015-08-01 06:08:55Alex Budovskisetmessageid: <1438409335.5.0.147877338692.issue24770@psf.upfronthosting.co.za>
2015-08-01 06:08:55Alex Budovskilinkissue24770 messages
2015-08-01 06:08:54Alex Budovskicreate