contention in the worker MPM.
Submitted by: Sander Striker
Reviewed by: Brian Pane
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92482
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.30-dev
+ *) Use the new APR pool code to reduce pool-related lock
+ contention in the worker MPM. [Sander Striker]
+
*) The POD no longer assumes the child is listening on 127.0.0.1
and now pulls the first hostname in the list of listeners to
perform the dummy connect on. This fixes a bug when the user
got_fd:
if (!workers_may_exit) {
/* create a new transaction pool for each accepted socket */
- apr_pool_create(&ptrans, tpool);
+ apr_pool_create_ex(&ptrans, tpool, NULL, APR_POOL_FNEW_ALLOCATOR);
+ apr_pool_tag(ptrans, "transaction");
rv = lr->accept_func(&csd, lr, ptrans);