Hi, At Fri, 19 Jul 2002 10:53:00 +0900, Jim Freeze wrote: > I would like to launch multiple tasks to a load > balancer, and have the main script wait until > they are all complete. I don't think this part > is too hard. > > If that is not too much trouble, I would like to be > able to identify each task as it completes. Process.wait(or wait2) returns exited child process ID, it doesn't help you? > The icing on the cake is that I want to call each > process via popen3 so I can control what is sent > to the std ports. Currently, no way to get child's(really grandchild's) pid and its exit status, but I guess you can wait EOF on its stdout and stderr. -- Nobu Nakada