Playing about with
signal handlers the other day, I came across a rather unusual caveat - when you pass multiple arguments to
die() or
warn() they are concatenated together, whether they are strings or not, and put into the first parameter of the handlers.
use strict;
$SIG{'__DIE__'} = sub {
local $" = ', '; # this will have no effect on @errs
my @errs = @_;
print "$0: @errs";
exit(1);
};
die('foo', {'bar' => 'xxx'}, ['baz','quux']);
__END__
output -
die.pl: fooHASH(0x80f9964)ARRAY(0x810a014) at die.pl line 9.
This is counter-intuitive since one expects to pass a
LIST and get the same at the other end. While I am aware that
signal handlers traditionally only take a single argument, this particular caveat is not explained in the
docs (although it
alludes to taking a single argument, as the example code always used
$_[0] when referring to the arguments). Also, I'm fairly sure this is consistent across all platforms since the concatenation is hard-coded in the perl source (i.e no platform dependent
#ifdef's).
So this is not so much a bug (as I first thought it might be) as an inconsistency between the documentation and the code. Perhaps some wisened monks out there could enlighten me as to the purpose of this 'feature' ...
broquaint
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.