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 eli.bendersky
Recipients docs@python, eli.bendersky, ezio.melotti, pitrou, sandro.tosi
Date 2011-11-13.23:28:19
SpamBayes Score 1.0046514e-05
Marked as misclassified No
Message-id <1321226900.38.0.793699754532.issue11836@psf.upfronthosting.co.za>
In-reply-to
Content
However, sentinels *are* mentioned in the multiprocessing doc, below multiprocessing.Process:

"
sentinel

    A numeric handle of a system object which will become “ready” when the process ends.

    On Windows, this is an OS handle usable with the WaitForSingleObject and WaitForMultipleObjects family of API calls. On Unix, this is a file descriptor usable with primitives from the select module.

    You can use this value if you want to wait on several events at once. Otherwise calling join() is simpler.

    New in version 3.3.
"

From a cursory glance on the implementation in Lib/multiprocessing/connection.py, this is the same sentinel.
History
Date User Action Args
2011-11-13 23:28:20eli.benderskysetrecipients: + eli.bendersky, pitrou, ezio.melotti, sandro.tosi, docs@python
2011-11-13 23:28:20eli.benderskysetmessageid: <1321226900.38.0.793699754532.issue11836@psf.upfronthosting.co.za>
2011-11-13 23:28:19eli.benderskylinkissue11836 messages
2011-11-13 23:28:19eli.benderskycreate