in reply to Re: creating a fork process
in thread creating a fork process
but im not convinced a fork was created, because the browser seems to still be loading from the perl script the whole time while the emails are being sent and then it times out after about 5 minutes, i have closed both STDIN and STDOUT yet the perl script still seems to be communicating with the browser?my $pid = fork; if ($pid) { # give thank u message. } elsif (defined $pid) { # close STDIN # close STDOUT # send emails. # exit. } else { # Error message. }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: creating a fork process
by ColtsFoot (Chaplain) on Feb 10, 2002 at 11:48 UTC | |
by richp (Initiate) on Feb 10, 2002 at 23:20 UTC | |
|
Re: Re: Re: creating a fork process
by ehdonhon (Curate) on Feb 12, 2002 at 10:42 UTC |