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 2002/08/28 20:23:06 UTC

cvs commit: httpd-2.0 Apache.dsp CHANGES

stoddard    2002/08/28 11:23:06

  Modified:    .        Apache.dsp CHANGES
  Log:
  Win32: Lower the default stack size from 1MB to 256KB.  This will allow
  a child process to start about 4 times as many threads (~8000 from ~2000)
  
  Revision  Changes    Path
  1.25      +2 -2      httpd-2.0/Apache.dsp
  
  Index: Apache.dsp
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/Apache.dsp,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- Apache.dsp	10 Jan 2002 08:47:20 -0000	1.24
  +++ Apache.dsp	28 Aug 2002 18:23:05 -0000	1.25
  @@ -50,7 +50,7 @@
   # ADD BSC32 /nologo
   LINK32=link.exe
   # ADD BASE LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib mswsock.lib /nologo /subsystem:console /map /machine:I386
  -# ADD LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib mswsock.lib /nologo /subsystem:console /map /machine:I386
  +# ADD LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib mswsock.lib /nologo /stack:0x40000 /subsystem:console /map /machine:I386
   
   !ELSEIF  "$(CFG)" == "Apache - Win32 Debug"
   
  @@ -75,7 +75,7 @@
   # ADD BSC32 /nologo
   LINK32=link.exe
   # ADD BASE LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib mswsock.lib /nologo /subsystem:console /incremental:no /map /debug /machine:I386
  -# ADD LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib mswsock.lib /nologo /subsystem:console /incremental:no /map /debug /machine:I386
  +# ADD LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib mswsock.lib /nologo /stack:0x40000 /subsystem:console /incremental:no /map /debug /machine:I386
   
   !ENDIF 
   
  
  
  
  1.903     +7 -1      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.902
  retrieving revision 1.903
  diff -u -r1.902 -r1.903
  --- CHANGES	28 Aug 2002 17:25:55 -0000	1.902
  +++ CHANGES	28 Aug 2002 18:23:05 -0000	1.903
  @@ -1,5 +1,11 @@
   Changes with Apache 2.0.41
  -  *) Implement ThreadLimit directive in the Windows MPM.
  +  *) Win32: Lower the default stack size from 1MB to 256K. This will
  +     allow around 8000 threads to be started per child process. 
  +     'EDITBIN /STACK:size apache.exe' can be used to change this 
  +     value directly in the apache.exe executable.
  +     [Bill Stoddard]
  +
  +  *) Win32: Implement ThreadLimit directive in the Windows MPM.
        [Bill Stoddard]
   
     *) Remove CacheOn config directive since it is set but never checked.