The code is correct, but confusing with all the 'if not's. See
RMGir's reply above for an explanation of what the code does. However, to make it less confusing, here's a fork()ing framework that uses straight ifs that are easier to understand (at least for me):
use strict;
if (defined(my $pid=fork()) {
if ($pid) {
# $pid is not 0, so this is the parent
# Let's redirect the user (more extensive code in your example).
redirect_user();
} else {
# $pid=0, so this is the child
my $retval=do_child_code();
exit $retval;
}
} else {
# Oops, fork() returned undef - something is definitely wrong.
DieNice("Unable to fork: $!\n");
}
sub do_child_code {
# Do your time consuming stuff, setting $retval to
# a useful number
return $retval;
}
You could do without the else block calling do_child_code, and have the child just fall through down to the child code, but this way it's a lot easier to understand and maintain.
CU
Robartes-
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.