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