diff options
author | Greg Ames <gregames@apache.org> | 2006-04-11 16:41:53 +0200 |
---|---|---|
committer | Greg Ames <gregames@apache.org> | 2006-04-11 16:41:53 +0200 |
commit | b8370ab0073208aeb7f0095ebdf4ede6ea385e9a (patch) | |
tree | e958fc9f3683da918ce00294f26e89a5a2ce76ac /modules/ldap/util_ldap.c | |
parent | * Rollback r393037 as this was vetoed by wrowe. Details see (diff) | |
download | apache2-b8370ab0073208aeb7f0095ebdf4ede6ea385e9a.tar.xz apache2-b8370ab0073208aeb7f0095ebdf4ede6ea385e9a.zip |
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
Diffstat (limited to '')
-rw-r--r-- | modules/ldap/util_ldap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c index d00f429482..3ad40ade70 100644 --- a/modules/ldap/util_ldap.c +++ b/modules/ldap/util_ldap.c @@ -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 |