Help for this page

Select Code to Download


  1. or download this
    my $thread300 = async {
        while( sleep 300 ) {
            ...
        }
    };
    
  2. or download this
    my $timeToExit : shared = 0;
    sub shutdown{
    ...
            ...
        }
    };
    
  3. or download this
    c:\test> \perl32\bin\perl -Mthreads -e"print $]; async{ sleep 1000 }->
    +detach; sleep 5"
    5.008009
    
    c:\test>