Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: reliable lockfiles?

by atcroft (Abbot)
on Jun 20, 2012 at 15:47 UTC ( [id://977387]=note: print w/replies, xml ) Need Help??


in reply to reliable lockfiles?

Regarding the part of your comment regarding PIDs, I believe you can kill 0, $pid to determine if a signal can be sent to that PID. If so, then verify that the PID is for a process executing the same script/program (by parsing the result of a 'ps' command, or using a module such as Proc::ProcessTable).

# Untested use Proc::ProcessTable; my $tobj = new Proc::ProcessTable; my $proctable = $tobj->table(); my $pid = 0; for ( @$proctable ) { if ( $_->cmndline =~ m/$script_name/ ) { $pid = $_->pid; last; } } print $script_name, ( kill 0, $pid ? q{appears} : q{does not appear} ), q{ to be running}, qq{\n};

Hope that helps.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (5)
As of 2024-04-20 01:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found