You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dg...@hyperreal.org on 1998/01/24 21:02:20 UTC

cvs commit: apachen/src/main alloc.h

dgaudet     98/01/24 12:02:20

  Modified:    src/main alloc.h
  Log:
  wrap wrap for easier tweaking/tuning
  
  Revision  Changes    Path
  1.42      +4 -0      apachen/src/main/alloc.h
  
  Index: alloc.h
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/main/alloc.h,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- alloc.h	1998/01/24 19:00:21	1.41
  +++ alloc.h	1998/01/24 20:02:19	1.42
  @@ -275,8 +275,12 @@
   /* magic numbers --- min free bytes to consider a free pool block useable,
    * and the min amount to allocate if we have to go to malloc() */
   
  +#ifndef BLOCK_MINFREE
   #define BLOCK_MINFREE 4096
  +#endif
  +#ifndef BLOCK_MINALLOC
   #define BLOCK_MINALLOC 8192
  +#endif
   
   /* Finally, some accounting */