You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by gs...@apache.org on 2002/03/19 02:41:53 UTC

cvs commit: apr/include apr_hash.h

gstein      02/03/18 17:41:53

  Modified:    include  apr_hash.h
  Log:
  Add a little note about passing a NULL pool to apr_hash_first().
  
  Revision  Changes    Path
  1.34      +2 -1      apr/include/apr_hash.h
  
  Index: apr_hash.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_hash.h,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- apr_hash.h	13 Mar 2002 20:39:14 -0000	1.33
  +++ apr_hash.h	19 Mar 2002 01:41:53 -0000	1.34
  @@ -137,7 +137,8 @@
   
   /**
    * Start iterating over the entries in a hash table.
  - * @param p The pool to allocate the apr_hash_index_t iterator 
  + * @param p The pool to allocate the apr_hash_index_t iterator. If this
  + *          pool is NULL, then an internal, non-thread-safe iterator is used.
    * @param ht The hash table
    * @example
    */