From: Ryan Bloom Date: Sun, 9 Jul 2000 23:12:44 +0000 (+0000) Subject: Fix mpm_common for use with the real prefork MPM. This was broken when X-Git-Tag: APACHE_2_0_ALPHA_5~150 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8bc702907ee3b511c876c8c7328178bb92e2d1df;p=thirdparty%2Fapache%2Fhttpd.git 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. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85799 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index 3fffe398164..3613ccaa0ee 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -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