You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by st...@apache.org on 2001/12/14 11:06:20 UTC

cvs commit: apr CHANGES

striker     01/12/14 02:06:19

  Modified:    .        CHANGES
  Log:
  Put new pools code in place which allows applications to
  switch off locking on pools operations in case a pool is
  guaranteed to never being used in more than one thread
  at the same time.  We've seen a significant performance
  improvement over the old code.
  
  Reviewed by:	Justin Erenkrantz, Brian Pane
  
  Revision  Changes    Path
  1.197     +6 -0      apr/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apr/CHANGES,v
  retrieving revision 1.196
  retrieving revision 1.197
  diff -u -r1.196 -r1.197
  --- CHANGES	2001/12/12 06:46:45	1.196
  +++ CHANGES	2001/12/14 10:06:19	1.197
  @@ -1,5 +1,11 @@
   Changes with APR b1  
   
  +  *) Put new pools code in place which allows applications to
  +     switch off locking on pools operations in case a pool is
  +     guaranteed to never being used in more than one thread
  +     at the same time.  We've seen a significant performance
  +     improvement over the old code. [Sander Striker]
  +
     *) Add apr-config - a shell script to allow third-party programs
        easy access to APR configuration parameters.  [Justin Erenkrantz]