I have a process id in Python. I know I can kill it with os.kill(), but how do I check if it is alive ? Is there a built-in function or do I have to go to the shell?
|
|
Use subprocess module to spawn process. There is proc.poll() - function it returns Null if process is still alive otherwise it returns process returncode. |
|||
|
|
|
|
If you send signal 0, you can determine whether you are allowed to send other signals. An error code will indicate whether it's a permission problem or a missing process. See Also, if the process is your child, you can get a |
||
|
|
