This is a race condition. There is no reason to believe that because a file did not exist when the previous instruction was executed that it still does not exist (your operating system could have run another proccess in between). So when your while (-e $LockFile && time < $EndTime) loop ends there is no guarantee that the file does not exist (infact, even if there were no race condition, you have a time limit on this loop but never check to see if the loop terminated because time was up or if it terminated because the file doesn't exist -- but like I said, checking to see if the file doesn't exist would still be a bug). If you are unable to use flock(), you could see if you're able to use sysopen with the O_EXCL flag which will guarantee that the file does not exist when opened (if it does exist, the sysopen call will fail and you'll probably want to handle this rather than simply returning from the function)

In reply to Re: file locking problem! by Anonymous Monk
in thread file locking problem! by kiseok7

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.