Help for this page

Select Code to Download


  1. or download this
    # change this statement
    my $pid = $pm->start and next ;
    
    # to the following
    my $pid = $pm->start and return !0 ;  # return 1 works too
    
  2. or download this
    use POSIX ();
    
    ...
        POSIX::_exit(0);
    }