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

Re: Forking HTTP Daemon

by Thelonius (Priest)
on Mar 19, 2003 at 18:29 UTC ( [id://244415]=note: print w/replies, xml ) Need Help??


in reply to Forking HTTP Daemon

The problem is that the SIGCHLD is interrupting the accept() call. To fix:
use Errno qw(EINTR); ... while (1) { $client = $socket->accept; if (!$client) { next if $! == EINTR; die "Error on accept: $!\n"; }
or equivalent

Updated per request:
http://archive.develooper.com/perl5-porters@perl.org/msg85068.html
http://www.gnu.org/manual/glibc-2.2.5/html_node/Interrupted-Primitives.html

This is also one of the examples given in Worse is Better

Replies are listed 'Best First'.
Re: Re: Forking HTTP Daemon
by Zola (Initiate) on Mar 19, 2003 at 20:48 UTC
    Much appreciated,
    Thanks
    Matt
Re: Re: Forking HTTP Daemon
by Anonymous Monk on Apr 30, 2004 at 19:06 UTC

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2024-04-25 14:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found