Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: strange behaviour when forking lots of times

by Zaxo (Archbishop)
on May 16, 2006 at 04:57 UTC ( [id://549664]=note: print w/replies, xml ) Need Help??


in reply to strange behaviour when forking lots of times

Caution when experimenting with this. It's a very effective fork bomb for slightly larger values of 10.

Perl fork behaves exactly like unistd.h fork(), except that the return value differs on failure. When fork fails, it returns undef instead of -1, as C fork() does.

Here's my forking idiom:

my %kid; { defined(my $cpid = fork) or warn $! and last; $cpid and $kid{$cpid} = undef, last; undef %kid; # in child now # do childish things exit 0; } # . . . delete $kid{wait()} while %kid;
There are other ways to avoid zombie kids. Which you choose depends on how your program flow is intended to go.

After Compline,
Zaxo

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (7)
As of 2024-04-23 20:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found