I have written some scripts for automation. But sometimes scripts hangs while executing sleep 10; or any other sleep. Than if i press CNTRL+C on command prompt, it resumes the execution. I wonder if you could let me know the solution. I am using windows XP and perl version - 5.14 Actually my master script calls many batch files and uses modules also as Command::Execute("<some command>"); But suppose I have written one subroutine like inside one module named as Command.pm sub Reset { <do some stuff>; print "completed\n"; } and I call it in master script as Command::Reset(); So, sometimes what happens that print completed comes but the program on the command prompt stucks and when I press CNTRL+C it resumes. So, I am not able to find out the issue what is happening actually. So Please update me that is it possible that system is running so many processes so it just don't schedule that process so it stucks. or I should not use batch files. Thanks & Regards Jitendra

In reply to Perl hangs within sleep by jitendrasingh1386

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.