Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: getppid() returns cached value

by Molt (Chaplain)
on May 26, 2005 at 15:47 UTC ( [id://460737]=note: print w/replies, xml ) Need Help??


in reply to getppid() returns cached value

I've been working on this same problem myself lately, and think I've found a work-around that looks like it works although I've not yet had time to try it.

The kill function can be used to check if a given process ID is available to receive signals (With some limitations on OS, see the perlport docs for details), so the way I'm planning on checking for a parent process' death is something like:

if (getppid==1 or !kill (0, getppid)) { # Parent is dead, long live the child! } else { # Parent still alive. }

As I've said I've not had time to actually try this myself yet, but it's looking to be along the right lines and replace the Proc::ProcessTable hack I'm currently using for the job. Let me know if it does work for you.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (None)
    As of 2024-04-25 01:33 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found