in reply to And yet more $SIG{__DIE__} fun...

This is adequately documented in perlvar (%SIG) and the documentation for die (at the bottom). A workaround is to put this as the first line in your signal handler for __DIE__:
die @_ if $^S;

Replies are listed 'Best First'.
RE: Re: And yet more $SIG{__DIE__} fun...
by Adam (Vicar) on Nov 01, 2000 at 02:52 UTC
    Ooooh. I've never used $^S before. Thanks!