Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print "reaping threads\n";
    $_->join for threads->list;
    
  2. or download this
    use strict;
    use warnings;
    ...
    print "reaping children\n";
    waitpid($_, 0) for (keys %pids);