Acme::Signum - Address signal handlers by number


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.

 Acme::Signum - Address signal handlers by number