Help for this page

Select Code to Download


  1. or download this
    my $child=fork();
    die "Can't fork: $!" unless defined $child;
    ...
        } else {
          handle_task_two();
        }
    
  2. or download this
    my $child=fork();
    die "Can't fork: $!" unless defined $child;
    ...
            handle_task_two();
          }
        }