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.

link|improve this question

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 '09 at 11:01
feedback

4 Answers

up vote 19 down vote accepted

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

import os

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|improve this answer
Does this only work on unix-based machines? – Evan Fosmark Feb 20 '09 at 4:33
2  
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 '09 at 4:40
3  
This definitely doesn't work on Windows, as there's no such thing as UNIX-like signals. – Alex Lebedev Feb 20 '09 at 6:14
2  
To be complete, you should also check for the error number to make sure it is 3 (catch the exception and check for first arg). This is important if the target process exists but you don't have permission to send signal (for whatever reason). – haridsv Apr 6 '10 at 22:21
5  
Supported by windows now. docs.python.org/library/os.html?highlight=os.kill#os.kill – michael Jun 8 '11 at 17:24
show 5 more comments
feedback

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|improve this answer
feedback

mluebke code is not 100% correct; kill() can also raise EPERM (access denied) in which case that obviously means a process exists.

import os, errno

def pid_exists(pid):
    """Check whether pid exists in the current process table."""
    if pid < 0:
        return False
    try:
        os.kill(pid, 0)
    except OSError, e:
        return e.errno == errno.EPERM
    else:
        return True
link|improve this answer
haridsv suggests the test should be e.errno != 3; perhaps e.errno != errno.ESRCH – Jason R. Coombs Feb 22 at 12:12
Why? ESRCH means "no such process". – Giampaolo Rodolà Feb 23 at 19:27
Right. Since ESRCH means "no such process", errno != ESRCH means "not no such process" or "process exists", which is very similar to the name of the function. You mentioned specifically EPERM, but what do the other possible error codes imply? It seems incorrect to single out an error code which is loosely related to the intent of the check, whereas ESRCH seems closely related. – Jason R. Coombs Feb 24 at 16:42
feedback

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|improve this answer
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 '09 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 '09 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 '09 at 17:32
feedback

Your Answer

 
or
required, but never shown

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