On Wed, Aug 06, 2003 at 11:13:15PM -0500 Ben Jacobs-Swearingen wrote:
> Hello all, this is my first post to this group, and I hope it isn¹t
> inappropriate. Anyway I have the following code in a CGI I¹m working on,
> it¹s supposed to translate the ugly %(hexhex) markers for non-alphanumeric
> char
Hello all, this is my first post to this group, and I hope it isn¹t
inappropriate. Anyway I have the following code in a CGI I¹m working on,
it¹s supposed to translate the ugly %(hexhex) markers for non-alphanumeric
characters back into normal text and assign the results to elements of an
array. I
Steve Blumenkrantz wrote:
>
> Since I didn't get any responses on my last question about process creation
> and the killing of child processes I thought that maybe I'd switch gears a
> bit and ask:
>
> On Unix does one know how I can get the process id of a process kicked off
> from within a per
Since I didn't get any responses on my last question about process creation
and the killing of child processes I thought that maybe I'd switch gears a
bit and ask:
On Unix does one know how I can get the process id of a process kicked off
from within a perl script via the back-tic ("`") syntax?
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_