Help for this page

Select Code to Download


  1. or download this
    $SIG{HUP} = sub { print "Framework handler!\n"; };
    
  2. or download this
    $SIG{HUP} = sub { print "FooApp handler!\n"; };
    
  3. or download this
    my $old_handler = $SIG{HUP};
    $SIG{HUP} = sub {
        print "Framework handler!\n";
        $old_handler->(@_) if defined $old_handler;
    }