You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Dean Gaudet <dg...@hyperreal.org> on 1997/09/09 03:24:36 UTC

cvs commit: apachen/src CHANGES

dgaudet     97/09/08 18:24:36

  Modified:    src      CHANGES
  Log:
  forgot to doc OPTIMIZE_TIMEOUTS
  
  Revision  Changes    Path
  1.429     +8 -0      apachen/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/CHANGES,v
  retrieving revision 1.428
  retrieving revision 1.429
  diff -u -r1.428 -r1.429
  --- CHANGES	1997/09/05 00:26:29	1.428
  +++ CHANGES	1997/09/09 01:24:31	1.429
  @@ -1,5 +1,13 @@
   Changes with Apache 1.3a2
   
  +  *) Implement a new timer scheme which eliminates the need to call alarm() all
  +     the time.  Instead a counter in the scoreboard for each child is used to
  +     show when the child has made forward progress.  The parent samples this
  +     counter every scoreboard maintenance cycle, and issues SIGALRM if no
  +     progress has been made in the timeout period.  This reduces the static
  +     request best-case syscall count to 22 from 29.  This scheme is only
  +     used by systems with memory-based scoreboards.  [Dean Gaudet]
  +
     *) The proxy now properly handles CONNECT requests which are sent
        to proxy servers when using ProxyRemote.  [Marc Slemko, PR#1024]