From: Doug MacEachern Date: Fri, 24 Aug 2001 05:31:51 +0000 (+0000) Subject: change APR_LOCKALL to APR_INTRAPROCESS for crypto locks X-Git-Tag: 2.0.25~93 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=00bd672b672f91173c8ff4d772e7ae38527381c5;p=apache change APR_LOCKALL to APR_INTRAPROCESS for crypto locks PR: Obtained from: Submitted by: Justin Erenkrantz Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90618 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_util.c b/modules/ssl/ssl_util.c index 6c6bfb015b..75a64bdda9 100644 --- a/modules/ssl/ssl_util.c +++ b/modules/ssl/ssl_util.c @@ -381,7 +381,7 @@ void ssl_util_thread_setup(server_rec *s, apr_pool_t *p) */ for (i = 0; i < CRYPTO_NUM_LOCKS; i++) { lock_count[i]=0; - apr_lock_create(&(lock_cs[i]), APR_MUTEX, APR_LOCKALL, + apr_lock_create(&(lock_cs[i]), APR_MUTEX, APR_INTRAPROCESS, mc->szMutexFile, p); }