Help for this page

Select Code to Download


  1. or download this
    my @threads = map threads->create( \&thread, $Q, shared_clone( $dbh ) 
    +), 1 .. $T;
    #............................................^1, ^^^^^^^^^ 2 ^^^^^^^^
    
  2. or download this
    sub thread {
         my $tid = threads->tid;
         my( $Q ) = @_;
    
  3. or download this
    #! perl -slw
    use strict;
    ...
    $dbh->disconnect;
    
    unlink 'file';