Help for this page

Select Code to Download


  1. or download this
    my @threads = map threads->new( \&processrefsthread, $Q ), 1 .. $T;
    
  2. or download this
    sub threadProc {
        my $code = shift;
    ...
    }
    
    my @threads = map threads->new( \&threadProc, \&processrefsthread, $Q 
    +), 1 .. $T;
    
  3. or download this
    sub processrefsthread {
        my $Q = shift;
    ...
        }
        tprint 'Ending';
    }
    
  4. or download this
    C:\test>1056140-buk
    Useless use of division (/) in void context at C:\test\1056140-buk.p
    ...
    ; retrying
    [1] Starting
    ...
    
  5. or download this
    my $Q - ...;
    
    ...
            ...
        }
    }