You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2001/10/19 22:30:16 UTC

cvs commit: httpd-2.0/server/mpm/winnt mpm_default.h

stoddard    01/10/19 13:30:16

  Modified:    server/mpm/winnt mpm_default.h
  Log:
  maxrequestsperchild should default to 0 on windows.
  
  Revision  Changes    Path
  1.10      +1 -1      httpd-2.0/server/mpm/winnt/mpm_default.h
  
  Index: mpm_default.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/mpm/winnt/mpm_default.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- mpm_default.h	2001/02/16 04:26:52	1.9
  +++ mpm_default.h	2001/10/19 20:30:16	1.10
  @@ -129,7 +129,7 @@
    * the children don't die off.
    */
   #ifndef DEFAULT_MAX_REQUESTS_PER_CHILD
  -#define DEFAULT_MAX_REQUESTS_PER_CHILD 10000
  +#define DEFAULT_MAX_REQUESTS_PER_CHILD 0
   #endif
   
   #endif /* AP_MPM_DEFAULT_H */