You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/07/10 01:12:45 UTC

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