Help for this page

Select Code to Download


  1. or download this
      use POSIX qw(:signal_h) ;
    
    ...
      local $SIG{ALRM} = sub .... ;
      sigprocmask(SIG_SETMASK, $sigset );
    
  2. or download this
    use warnings ; use strict ;
    
    ...
      print "ALRM storm started\n";
      1 while kill ALRM => getppid;
    } ;