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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7a5a7fd8a6b6fe772e3fa1532866c437ea99563;p=thirdparty%2Fapache%2Fhttpd.git 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/modules/ssl@90618 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_util.c b/ssl_util.c index 6c6bfb015b4..75a64bdda97 100644 --- a/ssl_util.c +++ b/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); }