Received: by taz.hyperreal.com (8.8.4/V2.0) id KAA18875; Sun, 16 Mar 1997 10:22:03 -0800 (PST) Received: by taz.hyperreal.com (8.8.4/V2.0) id KAA18869; Sun, 16 Mar 1997 10:22:01 -0800 (PST) Date: Sun, 16 Mar 1997 10:22:01 -0800 (PST) From: Jim Jagielski Message-Id: <199703161822.KAA18869@taz.hyperreal.com> To: apache-cvs@hyperreal.com Subject: cvs commit: apache/src http_main.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@hyperreal.com jim 97/03/16 10:22:01 Modified: src http_main.c Log: Don't count starting child processes as idle, since they really aren't Revision Changes Path 1.130 +1 -2 apache/src/http_main.c Index: http_main.c =================================================================== RCS file: /export/home/cvs/apache/src/http_main.c,v retrieving revision 1.129 retrieving revision 1.130 diff -C3 -r1.129 -r1.130 *** http_main.c 1997/03/15 20:49:09 1.129 --- http_main.c 1997/03/16 18:21:59 1.130 *************** *** 991,998 **** int res = 0; for (i = 0; i < HARD_SERVER_LIMIT; ++i) ! if (scoreboard_image->servers[i].status == SERVER_READY ! || scoreboard_image->servers[i].status == SERVER_STARTING) ++res; return res; --- 991,997 ---- int res = 0; for (i = 0; i < HARD_SERVER_LIMIT; ++i) ! if (scoreboard_image->servers[i].status == SERVER_READY) ++res; return res;