The only nice way I've found is:
import sys
import os
try:
os.kill(int(sys.argv[1]), 0)
print "Running"
except:
print "Not running"
(Source)
But is this reliable? Does it work with every process and every distribution?
|
2
|
|
|
|
|
|
Mark's answer is the way to go, after all, that's why the /proc file system is there. For something a little more copy/pasteable:
|
||
|
|
|
|
on linux, you can look in the directory /proc/$PID to get information about that process. In fact, if the directory exists, the process is running. |
||
|
|
|
|
It should work on any POSIX system (although looking at the However:
|
|||
|
|
|
|
// But is this reliable? Does it work with every process and every distribution? Yes, it should work on any Linux distribution. Be aware that /proc is not easily available on Unix based systems, though (FreeBSD, OSX). |
||
|
|