Help for this page

Select Code to Download


  1. or download this
    #! perl -slw
    use strict;
    ...
    }
    
    printf STDERR "With T:$T Q:$Q took %.3f s\n", time - $start;
    
  2. or download this
    package threads::Q;
    use strict; use warnings;
    ...
        lock @$Q;
        shift @$Q;
    }