Annotation of parser3/src/lib/sdbm/apr-impl/apr_pools.C, revision 1.1

1.1     ! paf         1: /** @file
        !             2:        Parser: implementation of apr functions.
        !             3: 
        !             4:        Copyright(c) 2003 ArtLebedev Group (http://www.artlebedev.com)
        !             5:        Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
        !             6: */
        !             7: 
        !             8: static const char* IDENT="$Date: 2003/11/03 11:24:53 $";
        !             9: 
        !            10: #include "apr_pools.h"
        !            11: 
        !            12: 
        !            13: APR_DECLARE(void) apr_pool_cleanup_register(
        !            14:     apr_pool_t *p,
        !            15:     const void *data,
        !            16:     apr_status_t (*plain_cleanup)(void *),
        !            17:     apr_status_t (*child_cleanup)(void *))
        !            18: {
        !            19: }
        !            20: 
        !            21: APR_DECLARE_NONSTD(apr_status_t) apr_pool_cleanup_null(void *data)
        !            22: {
        !            23:        return APR_SUCCESS;
        !            24: }
        !            25: 
        !            26: APR_DECLARE(apr_status_t) apr_pool_cleanup_run(
        !            27:     apr_pool_t *p,
        !            28:     void *data,
        !            29:     apr_status_t (*cleanup)(void *))
        !            30: {
        !            31:        return APR_SUCCESS;
        !            32: }

E-mail: