From: hno <> Date: Sun, 6 Jul 2003 21:29:35 +0000 (+0000) Subject: Bugfix: Speed up processing of queued events significantly, to not cause X-Git-Tag: SQUID_3_0_PRE1~67 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d85ff21a7f7fa733f07109fda80a383c56aa97cf;p=thirdparty%2Fsquid.git Bugfix: Speed up processing of queued events significantly, to not cause large delays when under low load. --- diff --git a/src/main.cc b/src/main.cc index 14798a4449..f11abe7220 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,6 +1,6 @@ /* - * $Id: main.cc,v 1.381 2003/07/06 14:37:45 hno Exp $ + * $Id: main.cc,v 1.382 2003/07/06 15:29:35 hno Exp $ * * DEBUG: section 1 Startup and Main Loop * AUTHOR: Harvest Derived @@ -1123,7 +1123,7 @@ main(int argc, char **argv) */ comm_calliocallback(); - if (comm_iocallbackpendin()) + if (comm_iocallbackpending()) comm_calliocallback(); switch (comm_select(loop_delay)) {