Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    use strict;
    ...
    while (threads::running) {
        $_->join for threads->list(threads::joinable);
    }
    
  2. or download this
    #!/usr/bin/env perl
    
    use strict;
    ...
    
        select(undef,undef,undef,0.5);
    }