1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

more explanation for a couple of subtle lines of code

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@393236 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Greg Ames
2006-04-11 14:41:53 +00:00
parent df91b29fd7
commit b8370ab007

View File

@@ -1758,7 +1758,8 @@ static void *util_ldap_create_config(apr_pool_t *p, server_rec *s)
(util_ldap_state_t *)apr_pcalloc(p, sizeof(util_ldap_state_t));
/* Create a per vhost pool for mod_ldap to use, serialized with
* st->mutex (also one per vhost)
* st->mutex (also one per vhost). both are replicated by fork(),
* no shared memory managed by either.
*/
apr_pool_create(&st->pool, p);
#if APR_HAS_THREADS