Apache 1.3 API Documentation

Structure pool

Definition:

typedef struct pool pool;
typedef struct pool ap_pool;
struct pool opaque-structure
     

Usage example:

pool *p; 
char *foo; 
foo = ap_pstrcat(p, "string 1", "string 2", null);
     

The pool type is another name for the ap_pool structure (q.v.). The latter is the preferred type name, to avoid name collisions with third-party library symbols. However, due to historical reasons, a lot of legacy usages of the pool type name exist.

See also:
ap_bytes_in_pool, ap_clear_pool, ap_destroy_pool, ap_find_pool, ap_make_sub_pool, ap_palloc, ap_pcalloc, ap_pclosedir, ap_pclosef, ap_pclosesocket, ap_pduphostent, ap_pfclose, ap_pfdopen, ap_pfopen, ap_pgethostbyname, ap_pool, ap_pool_is_ancestor, ap_pool_join, ap_popendir, ap_popenf, ap_pregcomp, ap_pregfree, ap_psocket, ap_pstrcat, ap_pstrdup, ap_pstrndup

Previous: piped_log Next: regex_t

Table of Contents (Routines, Structures, Data Cells, Constants)