Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 65600 invoked by uid 500); 18 Dec 2001 20:26:16 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 65589 invoked by uid 500); 18 Dec 2001 20:26:16 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 18 Dec 2001 20:26:15 -0000 Message-ID: <20011218202615.16350.qmail@icarus.apache.org> From: trawick@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/server main.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N trawick 01/12/18 12:26:15 Modified: server main.c Log: tag a few of the key httpd pools Revision Changes Path 1.111 +4 -0 httpd-2.0/server/main.c Index: main.c =================================================================== RCS file: /home/cvs/httpd-2.0/server/main.c,v retrieving revision 1.110 retrieving revision 1.111 diff -u -r1.110 -r1.111 --- main.c 2001/12/05 15:41:25 1.110 +++ main.c 2001/12/18 20:26:15 1.111 @@ -226,12 +226,14 @@ exit(1); } + apr_pool_tag(cntx, "process"); ap_open_stderr_log(cntx); process = apr_palloc(cntx, sizeof(process_rec)); process->pool = cntx; apr_pool_create(&process->pconf, process->pool); + apr_pool_tag(process->pconf, "pconf"); process->argc = argc; process->argv = argv; process->short_name = apr_filename_of_pathname(argv[0]); @@ -324,6 +326,7 @@ ap_setup_prelinked_modules(process); apr_pool_create(&pcommands, pglobal); + apr_pool_tag(pcommands, "pcommands"); ap_server_pre_read_config = apr_array_make(pcommands, 1, sizeof(char *)); ap_server_post_read_config = apr_array_make(pcommands, 1, sizeof(char *)); ap_server_config_defines = apr_array_make(pcommands, 1, sizeof(char *)); @@ -389,6 +392,7 @@ } apr_pool_create(&plog, pglobal); + apr_pool_tag(plog, "plog"); apr_pool_create(&ptemp, pconf); /* Note that we preflight the config file once