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

Re^2: IO::Socket Not responding after period of time and traffic!

by Corion (Patriarch)
on Aug 15, 2010 at 13:08 UTC ( [id://855142]=note: print w/replies, xml ) Need Help??


in reply to Re: IO::Socket Not responding after period of time and traffic!
in thread IO::Socket Not responding after period of time and traffic!

Actually, wait returns the PID of the just reaped child, and under the Windows fork emulation, emulated forked children get negative PIDs, so a check for equality to -1 sounds saner than checking for >0.

Replies are listed 'Best First'.
Re^3: IO::Socket Not responding after period of time and traffic!
by rowdog (Curate) on Aug 16, 2010 at 19:26 UTC

    Well, okay, that's a good point but I'm not crazy enough to want to deal with fork and Windows (use threads;)

    My point is that most UNIX like OSes treat a return of zero from waitpid with the WNOHANG option as a special case that says "there are no stopped, continued or exited children". If you idle loop waiting for your children to exit, you won't be getting out of the signal handler often enough to handle new connections. Just testing for -1 isn't enough.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-26 06:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found