Message143981
| 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. |
|