From: [EMAIL PROTECTED]
> I'm hoping someone has done this before. I need to spawn 3 processes
> and then wait for all three to finish.
>
> spawn like this:
> my $obj;
> my $appname = $perl;
> my $cmdline = "$deliverscript $arg";
> my $iflags = 1;
> my $cflags = CREA
>but how can I tell when all three are finished? If I use
> $obj1->Wait(INFINITE);
> $obj2->Wait(INFINITE);
> $obj3->Wait(INFINITE);
>
>what happens if $obj2 finishes before $obj1?
looks like this works fine...
PHF
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional c
Hi All,
I'm hoping someone has done this before. I need to spawn 3 processes and
then wait for all three to finish.
spawn like this:
my $obj;
my $appname = $perl;
my $cmdline = "$deliverscript $arg";
my $iflags = 1;
my $cflags = CREATE_NEW_CONSOLE | NORMAL_PRIORITY_