You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2006/05/10 13:51:44 UTC

svn commit: r405721 - /httpd/httpd/trunk/server/mpm/prefork/prefork.c

Author: jorton
Date: Wed May 10 04:51:41 2006
New Revision: 405721

URL: http://svn.apache.org/viewcvs?rev=405721&view=rev
Log:
* server/mpm/prefork/prefork.c (child_main): Tag pchild.

Modified:
    httpd/httpd/trunk/server/mpm/prefork/prefork.c

Modified: httpd/httpd/trunk/server/mpm/prefork/prefork.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/server/mpm/prefork/prefork.c?rev=405721&r1=405720&r2=405721&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/prefork/prefork.c (original)
+++ httpd/httpd/trunk/server/mpm/prefork/prefork.c Wed May 10 04:51:41 2006
@@ -492,6 +492,7 @@
     apr_allocator_max_free_set(allocator, ap_max_mem_free);
     apr_pool_create_ex(&pchild, pconf, NULL, allocator);
     apr_allocator_owner_set(allocator, pchild);
+    apr_pool_tag(pchild, "pchild");
 
     apr_pool_create(&ptrans, pchild);
     apr_pool_tag(ptrans, "transaction");