Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: help me fork

by Zaxo (Archbishop)
on Jul 20, 2004 at 15:33 UTC ( [id://375975]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use IO::Socket::INET;
    my $log = IO::Socket::INET->new(
        PeerAddr => 'logserver',
    ...
        Proto    => 'udp'
    );
    die unless $log->connected();
    
  2. or download this
    my %kid;
    for (1..50) {
        my $pid = fork;
    ...
    }
    # No Zombies!
    delete $kid{wait()} while %kid;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (5)
As of 2024-04-24 10:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found