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

cvs commit: apr/include apr_pools.h

rbb         01/08/11 21:31:52

  Modified:    include  apr_pools.h
  Log:
  These two pool functions were declared twice in apr_pools.h.  This brings
  us back down to just declaring them once.
  Submitted by:	Ian Holsman <ia...@cnet.com>
  
  Revision  Changes    Path
  1.57      +0 -16     apr/include/apr_pools.h
  
  Index: apr_pools.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_pools.h,v
  retrieving revision 1.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- apr_pools.h	2001/08/11 17:57:11	1.56
  +++ apr_pools.h	2001/08/12 04:31:52	1.57
  @@ -344,22 +344,6 @@
                                               apr_pool_t *pparent,
                                               int (*apr_abort)(int retcode));
   
  -#if defined(APR_POOL_DEBUG) || defined(DOXYGEN) 
  -/**
  - * Report the number of bytes currently in the pool
  - * @param p The pool to inspect
  - * @param recurse Recurse/include the subpools' sizes
  - * @return The number of bytes
  - */
  -APR_DECLARE(apr_size_t) apr_pool_num_bytes(apr_pool_t *p, int recurse);
  -
  -/**
  - * Report the number of bytes currently in the list of free blocks
  - * @return The number of bytes
  - */
  -APR_DECLARE(apr_size_t) apr_pool_free_blocks_num_bytes(void);
  -#endif
  -
   /**
    * Register a function to be called when a pool is cleared or destroyed
    * @param p The pool register the cleanup with