From 0d1ca5c60d4a6fafdd84a4e1d12c2f895ed9f4b6 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Fri, 14 Jun 2002 17:49:28 +0000 Subject: [PATCH] the TCP guy in Austin (AIX-land) swears that 4.3.2 GA had the fix for thundering herd, so tweak the prior change just a bit git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95677 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 40399b1290..833ee8d2f0 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,6 @@ Changes with Apache 2.0.38 - *) AIX 4.3.3 and above: Define SINGLE_LISTEN_UNSERIALIZED_ACCEPT. + *) AIX 4.3.2 and above: Define SINGLE_LISTEN_UNSERIALIZED_ACCEPT. These levels of AIX don't have a thundering herd problem with accept(). [Jeff Trawick] diff --git a/configure.in b/configure.in index f2d66df25f..dbdc3942e8 100644 --- a/configure.in +++ b/configure.in @@ -210,7 +210,7 @@ case $host in ;; *aix*) aixver=`echo $host | sed 's/^[[^0-9]]*//' | sed 's/\.//g'` - if test $aixver -ge 4330; then + if test $aixver -ge 4320; then APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1]) fi ;; -- 2.40.0