You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gr...@apache.org on 2006/04/11 16:41:54 UTC

svn commit: r393236 - /httpd/httpd/trunk/modules/ldap/util_ldap.c

Author: gregames
Date: Tue Apr 11 07:41:53 2006
New Revision: 393236

URL: http://svn.apache.org/viewcvs?rev=393236&view=rev
Log:
more explanation for a couple of subtle lines of code

Modified:
    httpd/httpd/trunk/modules/ldap/util_ldap.c

Modified: httpd/httpd/trunk/modules/ldap/util_ldap.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/ldap/util_ldap.c?rev=393236&r1=393235&r2=393236&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ldap/util_ldap.c (original)
+++ httpd/httpd/trunk/modules/ldap/util_ldap.c Tue Apr 11 07:41:53 2006
@@ -1758,7 +1758,8 @@
         (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