
Acme::Signum - Address signal handlers by number

use Acme::Signum;
$SIG[3] = sub{ print "this works\n" };
kill(3,$$);
print ":)\n";
$SIG[3]='DEFAULT';
kill(3,$$);
print ":(\n";

@SIG is tied to directly modify %SIG.

@SIG

kill(2)

Raoul Zwart, <rlzwart@cpan.org>

Copyright 2003 by Raoul Zwart
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.