The following reply was made to PR config/467; it has been noted by GNATS.
From: Dean Gaudet <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: config/467: possible starved listening sockets -- httpd stops
responding
Date: Tue, 21 Oct 1997 10:52:12 -0700 (PDT)
No, it's not resolved until every host has serialized accept, or we put in
a test for those without serialized accept... something like this:
#if !defined(USE_xxx_SERIALIZED_ACCEPT) && !defined(USE_yyy_SERIA...
if (listeners->next != listeners) {
aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_CRIT,
"you cannot use multiple sockets safely on your system,"
" proceeding anyway");
}
#endif
Dean