Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 37928 invoked by uid 500); 28 May 2000 12:20:06 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 37909 invoked by uid 500); 28 May 2000 12:20:05 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 28 May 2000 12:20:05 -0000 Message-ID: <20000528122005.37904.qmail@locus.apache.org> From: bjh@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/main mpm_common.c bjh 00/05/28 05:20:05 Modified: src/main mpm_common.c Log: Only compile ap_reclaim_child_processes() if a CHILD_INFO_TABLE is known. Revision Changes Path 1.9 +2 -0 apache-2.0/src/main/mpm_common.c Index: mpm_common.c =================================================================== RCS file: /home/cvs/apache-2.0/src/main/mpm_common.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- mpm_common.c 2000/05/24 00:41:59 1.8 +++ mpm_common.c 2000/05/28 12:20:04 1.9 @@ -81,6 +81,7 @@ #endif +#ifdef CHILD_INFO_TABLE void ap_reclaim_child_processes(int terminate) { int i, status; @@ -169,6 +170,7 @@ } } } +#endif /* number of calls to wait_or_timeout between writable probes */ #ifndef INTERVAL_OF_WRITABLE_PROBES