Hi,
my programm starts a subprocess, which has to send some kind of signal to the parent after initialization. It would be perfekt if i could set up a handler in parent, which is called when this signal is sent. Is there any way to do it?
Alendit
|
|
Hi, my programm starts a subprocess, which has to send some kind of signal to the parent after initialization. It would be perfekt if i could set up a handler in parent, which is called when this signal is sent. Is there any way to do it? Alendit |
|||
|
|
|
|
If you are using Python 2.6, you can use the
If you are using Python 2.4 or 2.5, don't despair - a backport is available here. |
||
|
|
|
Parent code:
Child code:
Be careful with this form of IPC because it has its issues, e.g.:
I recommend reading the whole signal(2) man page. |
||||
|
|
|
You can use the signal module from the Python standard library to register a signal handler. The subprocess would then use normal signal sending mechanisms. |
||
|
|