From: Jeff Trawick Date: Fri, 11 Jan 2002 14:13:23 +0000 (+0000) Subject: let's play "name that pool" X-Git-Tag: 2.0.31~214 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=611de28cac3df7a3e037997676299ed341f2d6b1;p=apache let's play "name that pool" (debugging aid... set the tag on the transaction pool with prefork) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92828 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c index a7d161cd3c..6704c3379e 100644 --- a/server/mpm/prefork/prefork.c +++ b/server/mpm/prefork/prefork.c @@ -591,6 +591,7 @@ static void child_main(int child_num_arg) apr_pool_create_ex(&pchild, pconf, NULL, APR_POOL_FNEW_ALLOCATOR); apr_pool_create(&ptrans, pchild); + apr_pool_tag(ptrans, "transaction"); /* needs to be done before we switch UIDs so we have permissions */ reopen_scoreboard(pchild, 0);