vote up 5 vote down star
2

I'm currently passing the pid on the command line to the child, but is there a way to do this in the Win32 API? Alternatively, can someone alleviate my fear that the pid I'm passing might belong to another process after some time if the parent has died?

flag

49% accept rate

5 Answers

vote up 1 vote down check

Notice that if the parent process terminates it is very possible and even likely that the PID will be reused for another process. This is standard windows operation.

So to be sure, once you receive the id of the parent and are sure it is really your parent you should open a handle to it and use that.

link|flag
vote up 3 vote down

Just in case anyone else runs across this question and is looking for a code sample, I had to do this recently for a Python library project I'm working on. Here's the test/sample code I came up with:

#include <stdio.h>
#include <windows.h>
#include <tlhelp32.h>

int main(int argc, char *argv[]) 
{
    int pid = -1;
    HANDLE h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
    PROCESSENTRY32 pe = { 0 };
    pe.dwSize = sizeof(PROCESSENTRY32);

    //assume first arg is the PID to get the PPID for, or use own PID
    if (argc > 1) {
    	pid = atoi(argv[1]);
    } else {
    	pid = GetCurrentProcessId();
    }

    if( Process32First(h, &pe)) {
    	do {
    		if (pe.th32ProcessID == pid) {
    			printf("PID: %i; PPID: %i\n", pid, pe.th32ParentProcessID);
    		}
    	} while( Process32Next(h, &pe));
    }

    CloseHandle(h);
}
link|flag
vote up 2 vote down

Check out this article on CodeProject: Get Parent Process PID

link|flag
vote up 2 vote down

A better way to do this is to call DuplicateHandle() to create an inheritable duplicate of your process handle. Then create the child process and pass the handle value on the command line. Close the duplicated handle in the parent process. When the child's done, it will need to Close its copy as well.

link|flag
1  
This method has the advantage that the handle will really refer to your parent even if the parent dies before you access it. With the pid passing method, there's potentially a race condition (although very unlikely) between passing the pid, the child accessing it, the parent shutting down and the pid being reused... – Len Holgate Jun 11 at 10:23
vote up 0 vote down

"Alternatively, can someone alleviate my fear that the pid I'm passing might belong to another process after some time if the parent has died?"

Yes the PID can be reused. Unlike UNIX, Windows does not maintain a strong parent-child relationship tree.

link|flag

Your Answer

Get an OpenID
or
never shown

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