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 vstinner
Recipients benjamin.peterson, meador.inge, neologix, skrah, vstinner
Date 2011-09-13.17:55:49
SpamBayes Score 6.622319e-05
Marked as misclassified No
Message-id <1315936550.19.0.0253691544449.issue12936@psf.upfronthosting.co.za>
In-reply-to
Content
> However, I don't think we should/could add this to the posix module: 
> it expects a pthread_t instead of a PID, to which we don't have access.

We already have such function:
http://docs.python.org/dev/library/signal.html#signal.pthread_kill

I added threading.get_ident() to easily get the thread identifier. In Python < 3.3, you can use threading.current_thread().ident.

It's not documented, but if you pass a random integer, signal.pthread_kill() does crash.
History
Date User Action Args
2011-09-13 17:55:50vstinnersetrecipients: + vstinner, benjamin.peterson, skrah, meador.inge, neologix
2011-09-13 17:55:50vstinnersetmessageid: <1315936550.19.0.0253691544449.issue12936@psf.upfronthosting.co.za>
2011-09-13 17:55:49vstinnerlinkissue12936 messages
2011-09-13 17:55:49vstinnercreate