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 exarkun
Recipients exarkun, pmolina
Date 2009-07-23.18:50:20
SpamBayes Score 0.00031593963
Marked as misclassified No
Message-id <1248375022.61.0.873671789274.issue6554@psf.upfronthosting.co.za>
In-reply-to
Content
It might be better to pick a better (but probably platform-specific) API
for such a use-case.  os.kill has a problem with false positives (on
Linux it will tell you a process exists even when it doesn't).  Looking
in /proc/ or using a Windows API to enumerate all existing processes
might be better.  These have the advantage of giving you a bunch of PID
information all at once which you can then check against, rather than
repeatedly making syscalls.
History
Date User Action Args
2009-07-23 18:50:22exarkunsetrecipients: + exarkun, pmolina
2009-07-23 18:50:22exarkunsetmessageid: <1248375022.61.0.873671789274.issue6554@psf.upfronthosting.co.za>
2009-07-23 18:50:21exarkunlinkissue6554 messages
2009-07-23 18:50:20exarkuncreate