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...@locus.apache.org on 2000/12/04 07:22:30 UTC

cvs commit: apr/include apr_pools.h

rbb         00/12/03 22:22:30

  Modified:    include  apr_pools.h
  Log:
  Cleanup some minor docs, and remove apr_fdopen.  apr_fdopen is left over
  from Apache, and it is not used, and should not be provided.
  
  Revision  Changes    Path
  1.36      +1 -8      apr/include/apr_pools.h
  
  Index: apr_pools.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_pools.h,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- apr_pools.h	2000/12/01 06:27:15	1.35
  +++ apr_pools.h	2000/12/04 06:22:29	1.36
  @@ -203,12 +203,6 @@
   #define apr_pool_join(a,b)
   #endif
   
  -#ifdef ULTRIX_BRAIN_DEATH
  -#define apr_fdopen(d,m) fdopen((d), (char *)(m))
  -#else
  -#define apr_fdopen(d,m) fdopen((d), (m))
  -#endif
  -
   /*
    * APR memory structure manipulators (pools, tables, and arrays).
    */
  @@ -272,8 +266,7 @@
    * @param apr_abort A function to use if the pool cannot allocate more memory.
    * @return The new sub-pool
    * @tip The apr_abort function provides a way to quit the program if the
  - *      machine is out of memory.  By default, APR will return with an
  - *      error.
  + *      machine is out of memory.  By default, APR will return on error.
    * @deffunc apr_pool_t *apr_make_sub_pool(apr_pool_t *p, int (*apr_abort)(int retcode))
    */
   APR_DECLARE(apr_pool_t *) apr_make_sub_pool(apr_pool_t *p, int (*apr_abort)(int retcode));