Help for this page

Select Code to Download


  1. or download this
    wbile( my $workitem = sourceOfWork() ) {
        sleep 1 while $Q->pending > MAXQ;
        $Q->enqueue( $workitem );
    }
    
  2. or download this
    my $cond :shared;
    
    ...
    ...
    cond_signal( $cond ) if $Q->pending < MAXQ;
    ...