in reply to Can't get Win32::Create::Process() parent to exit before it's children

You are mistaken. Win32::Process does not wait for the process it creates to finish (unless you call ->Wait).
  • Comment on Re: Can't get Win32::Create::Process() parent to exit before it's children
  • Download Code

Replies are listed 'Best First'.
Re^2: Can't get Win32::Create::Process() parent to exit before it's children
by AlphaGrey (Initiate) on Jan 21, 2010 at 08:40 UTC

    I never said Win32::Process::Create() waits for the newly created process to finish. I said the process which called Win32::Process::Create() didn't return it's own exit code until the newly created process exited.

    BTW,I solved my problem and posted the sol'n in this thread if you are interested.