http://qs321.pair.com?node_id=643376


in reply to die/warn signal handler best practice questions

in general: don't trust people telling you to never do this or that. ;)
second, i think you overestimate the complexity of that handler problem. as you can see from e.g. perldoc -f local, it's very easy to let every process take control over its own reactions on __DIE__ and __WARN__ signals. and if you strictly distiguish between the process and the modules it loads it becomes fairly clear (to me), that a module should simply die, whilst the process redirects that signal to maybe a logging thread or any other appropriate stuff.
--------------------------------
masses are the opiate for religion.

Replies are listed 'Best First'.
Re^2: die/warn signal handler best practice questions
by bsb (Priest) on Oct 08, 2007 at 23:23 UTC
    What you say is true for applications, but I'm trying to write a module that installs die/warn handlers.

    I could just return the handler to install and let the user do the local($SIG{..}) in the correct scope... That's an awkward interface, but might but useful in some circumstances.

    Thanks for your comments