Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Locking files

by claree0 (Hermit)
on Aug 10, 2001 at 16:45 UTC ( [id://103854]=note: print w/replies, xml ) Need Help??


in reply to Locking files

My first instinct would to have the first thing program.pl does be check the process list for number of instances of that prog, and exit if more than one....then you don't need to lock/unlock (and I can't think of a way to do that), just exit early.
Clare

Replies are listed 'Best First'.
Re: Re: Locking files
by Ras (Acolyte) on Aug 10, 2001 at 17:03 UTC
    I don't understand what you mean claree0. Can you show me some kind of example. thanks.
      Ras,

      Assuming that you are doing this on some sort of unix-like OS, then grepping the output of `ps ax | grep program.pl | wc -l` ought to give you the current number of running processes from that program. If 1 then it is the only instance. If 2 then another is already running, and you can exit the new instance.

      There may be a better way of doing this without making calls outside perl - I still talk 'perl baby-talk' quite a lot!

      Clare

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://103854]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-26 03:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found