Try changing your waitpid test to:
do { $child = waitpid(-1,WNOHANG) } while ( $child <= 0 );
and you might want to add a print statement in front of the "return" in your SIG handler to see if waitpid might be returning -1 for those other kids.

Update:
I completely overlooked this, but system does a fork call of its own, meaning that your SIG handler should catch those as well - so it really shouldn't be necessary to fork children who fork a single child... just catch the CHLD from the system call (?) (Nevermind, I see you're wanting to capture the PID for the resources hash)

I guess try the change in the loop and let us know what happens. That seemed to help my program (unless Linux's waitpid/wait4 is that much different than AIX (crosses fingers))

In reply to Re: Invoking an external command - differences by RazorbladeBidet
in thread Invoking an external command - differences by hambo

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.