The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Acme::Signum - Address signal handlers by number

SYNOPSIS

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

DESCRIPTION

  @SIG is tied to directly modify %SIG.

EXPORT

@SIG

SEE ALSO

  kill(2)

AUTHOR

Raoul Zwart, <rlzwart@cpan.org>

COPYRIGHT AND LICENSE

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.