Help for this page

Select Code to Download


  1. or download this
       threads;
       threads::shared;
    
  2. or download this
       our $D = threads->new(\&Darling::run, ID => 'Darling' );
       $D->detach();
    ...
    ...
    }
    
  3. or download this
    $SIG{KILL} = 'mumsDeath';
    $SIG{TERM} = 'mumsDeath';
    sub mumsDeath {$D->kill('KILL'); print "killing my darling\n";}
    
  4. or download this
    package Darling;
    use threads;
    ...
          print "."
       } 
    }