Help for this page

Select Code to Download


  1. or download this
        my $Q = Thread::Queue->new;
        my $Thread = threads->create( "restoreserver", $new, $Q);
    
  2. or download this
            our @queues;
        push @queues, Thread::Queue->new;
        my $Thread = threads->create( "restoreserver", $new, $queues[ -1 ]
    + );