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

change APR_LOCKALL to APR_INTRAPROCESS for crypto locks

PR:
Obtained from:
Submitted by:	Justin Erenkrantz <jerenkrantz@ebuilt.com>
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90618 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doug MacEachern
2001-08-24 05:31:51 +00:00
parent 462c0c9706
commit 00bd672b67

View File

@@ -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);
}