Help for this page

Select Code to Download


  1. or download this
    for my $c (@car_links) {
        my $pid = fork();
    ...
        push @known_cars, $c;
        write_url_to_known_cars($c, $fh);
    }
    
  2. or download this
    for my $c (@car_links) {
        threads->create(sub {
    ...
        push @known_cars, $c;
        write_url_to_known_cars($c, $fh);
    }