views:

67

answers:

2

I have two processes, A and B. At some point A creates B. After B is created, if A's process tree is killed, I want B to still be around.

I am using CreateProcess() to create B, and I can't seem to find any way to make it create the process without it being a child. Same thing with ShellExecuteEx(), but I am probably missing some flag.

Does anyone know what I could use to do this?

EDIT: I forgot to mention that both processes need a HANDLE or process ID to the other

+1  A: 

You can try that process A create process C, which create process B and then process C will be immediatly ended (terminated). In a process B there are exist only information about the direct parent process (process Id of C which is not more running) and not about the process A. So "if A's process tree is killed" the process B will probably stay running.

For example you start Process Explorer (see http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx) then start Total Commander. From the Total Commander you start cmd.exe. From cmd.exe you start notepad.exe. Then type "exit" in the cmd.exe. After terminating of cmd.exe you can see that notepad.exe will no more displayed under Total Commander (totalcmd.exe). After you choose in Process Explorer "Kill Process Tree" for the Total Commander (totalcmd.exe) you can see that notepad.exe stay running.

Oleg
OK, I tried that, and I think it will do, one thing I forgot is that both processes need each other's process ID. With this solution, process B will have process A's ID, but A will only have B's.I think I can figure this one out with some kind of message passing though.Thanks!
Pedro
Every process can set exit code (with respect of `ExitProcess` or C function `exit`). So if process C (middle process) returns as an exit code the process id of the process B, then process A can give it for example with respect of `GetExitCodeProcess` function.
Oleg
Yeah, I think that's what I'll do, it's seems a bit hacky, but it's good enough, at least for now
Pedro
A: 

You can set the paramaeter dwcreationflags as DETACHED_PROCESS in the createprocess API.

Beetle