I've been working with fork(), and kill in an attempt to resolve a problem with a `lynx -source $page` hanging periodically.
I thought from various docs that
my $result = kill 0, $pid;
would tell me if the child process was running or done.
But alas the result is always 1.
How do I get around this?
Claude