I have a daemon process that handles a number of signals along with HUP. Basically the parent disassociates itself using POSIX::setsid, and then spawns a number of children that it communicates with using USR1 and USR2 signals. The parent also implements HUP where it kills the children, re-reads the configuration, and respawns the children according to the new configuration. I am reinstalling the signal handlers after every call, and all seem to work fine except HUP. The HUP handler runs fine the first time, but ceases to do so after that, almost as if the handler is not re-installed. However, I print out the SIG hash just before entering the "endless loop", and I see that the handler has a target (something like HUP => CODE(0x8da8428)). This is perl 5.8.8 running on RHEL 5. I tried using POSIX handlers, but see the exact same thing. What more, once the first HUP is received, all other signal handlers also seem to stop working. Is there a notable difference between the HUP signal and others? Does anyone have any advice regarding how to debug this sort of issue? Thanks.

In reply to handling HUP signals by druidmatrix

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.