Help for this page

Select Code to Download


  1. or download this
    my ($thr,$tid);
    ...
    while ((!($tid = threads->tid()))&&(my $client = $socket->accept)) { 
      $thr = threads->create(\&process_request,$client);
    
  2. or download this
    while ((!($tid = threads->tid()))&&(my $client = $socket->accept)) { 
      my $thr = threads->create(\&process_request,$client);