Loop control statements can be used in functions called from loops and it works. It is documented as not supported (the behaviour may change) but it does work.

However signals are a different story. I don't know the status of Perl and safe signals in the development branch. Most assuredly the production version doesn't have them. So adding signal handlers, well you may reduce your problem but won't solve it.

Personally my solutions to the needed input issue are to try tying STDIN to an implementation that will confess away to give you an idea where in your program you are asking for input but shouldn't be. There is a good chance that that won't work though. Alternately I would just pipe /dev/null into your program. I have done that before, mainly to handle system calls to code outside of my control that might try to interact.


In reply to Re (tilly) 1: Signal (SIGTTIN) in Solaris 8. (code) by tilly
in thread Signal (SIGTTIN) in Solaris 8. (code) by deprecated

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.