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

Re: How to fork one and only one child process from a loop ?

by idsfa (Vicar)
on Mar 18, 2006 at 04:50 UTC ( [id://537641]=note: print w/replies, xml ) Need Help??


in reply to How to fork one and only one child process from a loop ?

This skeleton has no error checking, but it does only spawn one child.

my $kidpid; while( ... loop condition ... ) { . . . if( ! $kidpid) { if(0 == ($kidpid=fork())) { # I'm the child exec { ... } die("How did I get here?"); } } # I'm the parent, keep doing stuff . . . # Before I loop, do a lame check to make sure kid # is still running. Ought to use a Proc:: Module $kidpid=0 if(! grep { m/^\s+$kidpid\s/ } `ps ax`); }

The intelligent reader will judge for himself. Without examining the facts fully and fairly, there is no way of knowing whether vox populi is really vox dei, or merely vox asinorum. — Cyrus H. Gordon

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (8)
As of 2024-04-25 11:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found