APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2003/11/01 15:54:15 $]
+Last modified at [$Date: 2003/11/01 16:09:29 $]
Release:
0: nd
nd: can the local_addr->port ever be 0?
- * Tag the pools created for requests and subrequests.
- server/request.c r1.129
- server/protocol.c r1.137
- +1: trawick, striker, nd
- nd: I'm not really sure, what is it good for. What is it good for? ;-)
- trawick: It is a minor debug aid. If you're debugging/tracing some
- apr operation or other utility routine, it is nice to display/trace
- the pool tag and know whether or not it is the [sub-]request pool.
- nd: ok, convinced.
-
* mod_status: Report total CPU time accurately when using a
threaded MPM. PR: 23795
modules/generators/mod_status.c r1.75
apr_pool_create(&p, conn->pool);
r = apr_pcalloc(p, sizeof(request_rec));
+ apr_pool_tag(p, "request");
r->pool = p;
r->connection = conn;
r->server = conn->base_server;
request_rec *rnew;
apr_pool_create(&rrp, r->pool);
+ apr_pool_tag(rrp, "subrequest");
rnew = apr_pcalloc(rrp, sizeof(request_rec));
rnew->pool = rrp;