From: wessels <> Date: Tue, 11 Jan 2000 11:37:44 +0000 (+0000) Subject: DW: X-Git-Tag: SQUID_3_0_PRE1~2087 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f84799bcb5ba37cd568e57dd476d4ba79e34ae47;p=thirdparty%2Fsquid.git DW: - Set MAX_POLL_TIME back to 10 msec for DISKD. Better to keep the CPU busy than to have delays. --- diff --git a/src/comm_select.cc b/src/comm_select.cc index 3a1f071eaf..20e13595d8 100644 --- a/src/comm_select.cc +++ b/src/comm_select.cc @@ -1,6 +1,6 @@ /* - * $Id: comm_select.cc,v 1.39 2000/01/03 19:25:52 wessels Exp $ + * $Id: comm_select.cc,v 1.40 2000/01/11 04:37:44 wessels Exp $ * * DEBUG: section 5 Socket Functions * @@ -37,7 +37,7 @@ #if USE_ASYNC_IO #define MAX_POLL_TIME 10 #elif USE_DISKD -#define MAX_POLL_TIME 100 +#define MAX_POLL_TIME 10 #else #define MAX_POLL_TIME 1000 #endif