It is a common idiom to make note of a pid, record it somewhere, and have a program read it in, and check that the program is still running. You're quite unlikely to run into the problem of PID reusage (actually, I'm pretty sure all OSes reuse PIDs; the top number is almost always some power of two), but if you wanted to add another level of safety, it's only a little more work. If you're working with the /proc file system in a unix like environment, I know that some file or other contains the command line that was used to invoke a process. That's how the ps command knows this. Dig around and find where this info lives, and then use it to verify that a given PID is in fact for your script.


In reply to Re: Make a perl script self aware... by skyknight
in thread Make a perl script self aware... by neuroball

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.