100% accurate MaxRequestsPerChild.
* it doesn't even count requests, it counts connections.
* all it is is a number someone pulls out of a hat in an attempt to deal with
resource leaks.
i.e., no strong need for accuracy.
atomic operations are relatively expensive and this is mainline code.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@558039
13f79535-47bb-0310-9956-
ffa450edef68
bucket_alloc = apr_bucket_alloc_create(ptrans);
process_socket(ptrans, csd, process_slot, thread_slot, bucket_alloc);
worker_sockets[thread_slot] = NULL;
- requests_this_child--; /* FIXME: should be synchronized - aaron */
+ requests_this_child--;
apr_pool_clear(ptrans);
last_ptrans = ptrans;
}