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 WGH
Recipients WGH, gvanrossum, vstinner, yselivanov
Date 2015-12-23.23:58:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1450915084.71.0.0403094885095.issue25936@psf.upfronthosting.co.za>
In-reply-to
Content
The problem with FastChildWatcher lies in the fact that it can accidentally reap processes that it doesn't watch.

However, os module includes waitid function (since Python 3.3), and it has WNOWAIT flags, which means "return status, let process remain waitable (=don't reap)".

What do you think, can this feature fix the problem with FastChildWatcher?
History
Date User Action Args
2015-12-23 23:58:04WGHsetrecipients: + WGH, gvanrossum, vstinner, yselivanov
2015-12-23 23:58:04WGHsetmessageid: <1450915084.71.0.0403094885095.issue25936@psf.upfronthosting.co.za>
2015-12-23 23:58:04WGHlinkissue25936 messages
2015-12-23 23:58:04WGHcreate