You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2002/01/11 15:13:23 UTC

cvs commit: httpd-2.0/server/mpm/prefork prefork.c

trawick     02/01/11 06:13:23

  Modified:    server/mpm/prefork prefork.c
  Log:
  let's play "name that pool"
  
  (debugging aid...  set the tag on the transaction pool with prefork)
  
  Revision  Changes    Path
  1.229     +1 -0      httpd-2.0/server/mpm/prefork/prefork.c
  
  Index: prefork.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/mpm/prefork/prefork.c,v
  retrieving revision 1.228
  retrieving revision 1.229
  diff -u -r1.228 -r1.229
  --- prefork.c	10 Jan 2002 00:27:59 -0000	1.228
  +++ prefork.c	11 Jan 2002 14:13:23 -0000	1.229
  @@ -591,6 +591,7 @@
       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);