Lines 31-37
Link Here
|
31 |
static apr_thread_mutex_t *dso_mutex; |
31 |
static apr_thread_mutex_t *dso_mutex; |
32 |
#endif |
32 |
#endif |
33 |
|
33 |
|
34 |
/* Global pool to allocate DSOs in. */ |
34 |
/* Global unmanaged pool to allocate DSOs in. */ |
35 |
static apr_pool_t *dso_pool; |
35 |
static apr_pool_t *dso_pool; |
36 |
|
36 |
|
37 |
/* Global cache for storing DSO objects. */ |
37 |
/* Global cache for storing DSO objects. */ |
Lines 55-61
svn_dso_initialize2(void)
Link Here
|
55 |
if (dso_pool) |
55 |
if (dso_pool) |
56 |
return SVN_NO_ERROR; |
56 |
return SVN_NO_ERROR; |
57 |
|
57 |
|
58 |
dso_pool = svn_pool_create(NULL); |
58 |
dso_pool = svn_pool_create_unmanaged(); |
59 |
|
59 |
|
60 |
#if APR_HAS_THREADS |
60 |
#if APR_HAS_THREADS |
61 |
status = apr_thread_mutex_create(&dso_mutex, |
61 |
status = apr_thread_mutex_create(&dso_mutex, |