in reply to Re: Parent process does not wait for Child processes to finish and exits after the waitpid statement
in thread Parent process does not wait for Child processes to finish and exits after the waitpid statement
Thanks for the comments...
I did not realize that fork() may have issues on the windows platform. I would try spawning a thread for each process and then have the parent wait for those threads to exit. Would also need to capture the exit status of the parent if exiting abruptly.
Thanks again..