vote up 8 vote down star

Is there a way to check to see if a pid corrosponds to a valid process? I'm getting a pid from a different source other than from os.getpid() and I need to check to see if a process with that pid doesn't exist on the machine. Much thanks.

Update: I need it to be available in Unix and Windows.

Update #2: I should be more specific - I'm checking to see if the PID is NOT in use.

flag

Windows is a non-standard OS. These kinds of things are NOT portable. Knowing you cannot have both, which is your priority? Pick one as a priority and edit the question. – S.Lott Feb 20 at 11:01

3 Answers

vote up 9 vote down check

Sending signal 0 to a pid will raise an OSError exception if the pid is not running, and do nothing otherwise.

import os
import signal

def check_pid(pid):        
    """ Check For the existence of a unix pid. """
    try:
        os.kill(pid, 0)
    except OSError:
        return False
    else:
        return True
link|flag
Does this only work on unix-based machines? – Evan Fosmark Feb 20 at 4:33
Also, doesn't this kill the process? – Evan Fosmark Feb 20 at 4:35
Works for sure in linux and OSX, I can't speak for Windows. It does not kill the process in the sense that you are asking, it sends signal 0, which is basically "Are you running?". – mluebke Feb 20 at 4:40
Ah, I see. Thanks for the code, but what I really need is something that runs in Windows as well. – Evan Fosmark Feb 20 at 5:02
Why SIG_DFL? Signal 0 has no name, and should (to my knowledge) be written as 0, not as SIG_DFL (which does not have a mandated value, and can stand for some other value on other systems). – Chris Jester-Young Feb 20 at 5:35
show 2 more comments
vote up 1 vote down

Look here for windows-specific way of getting full list of running processes with their IDs. It would be something like

from win32com.client import GetObject
def get_proclist():
    WMI = GetObject('winmgmts:')
    processes = WMI.InstancesOf('Win32_Process')
    return [process.Properties_('ProcessID').Value for process in processes]

You can then verify pid you get against this list. I have no idea about performance cost, so you'd better check this if you're going to do pid verification often.

For *NIx, just use mluebke's solution.

link|flag
vote up 1 vote down

I'd say use the PID for whatever purpose you're obtaining it and handle the errors gracefully. Otherwise, it's a classic race (the PID may be valid when you check it's valid, but go away an instant later)

link|flag
I should have been more specific - I'm checking for the INVALIDITY. So, I basically want to be able to see if a pid is NOT in use. – Evan Fosmark Feb 20 at 8:29
But what will you do with that answer? The instant after you've gained that knowledge, something might use that pid. – Damien_The_Unbeliever Feb 20 at 9:40
@Damien_The_Unbeliever - that's alright if something is using it after I gain that knowledge, and I understand what you're saying about the race condition, but I can assure you that it doesn't apply for my situation. – Evan Fosmark Feb 20 at 17:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.