Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 85082 invoked by uid 500); 9 Jul 2000 23:12:45 -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 85071 invoked by uid 500); 9 Jul 2000 23:12:45 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 9 Jul 2000 23:12:45 -0000 Message-ID: <20000709231245.85067.qmail@locus.apache.org> From: rbb@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/main mpm_common.c rbb 00/07/09 16:12:44 Modified: src/main mpm_common.c Log: Fix mpm_common for use with the real prefork MPM. This was broken when mpmt was added. This change can be removed when the MPM stuff calms down a bit and either mpmt or three separate MPMs are chosen. Revision Changes Path 1.19 +1 -1 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.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- mpm_common.c 2000/07/07 17:35:38 1.18 +++ mpm_common.c 2000/07/09 23:12:44 1.19 @@ -81,7 +81,7 @@ #if defined(DEXTER) || defined(MPMT_BEOS_MPM) || defined(BEOS_MPM) #define CHILD_TABLE 1 #define CHILD_INFO_TABLE ap_child_table -#elif defined(MPMT_PTHREAD) || defined (NO_THREADS) +#elif defined(MPMT_PTHREAD) || defined (NO_THREADS) || defined(PREFORK_MPM) #define SCOREBOARD 1 #define CHILD_INFO_TABLE ap_scoreboard_image->parent #endif