diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2020-05-31 20:58:28 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2020-05-31 20:58:28 +0000 |
commit | bbee6e0814d5875b85b81f26fd4ca7a28b6f9570 (patch) | |
tree | 726fcf32b39ca8976d7aa51b67c7236509f1bde4 /subversion/libsvn_subr/pool.c | |
parent | 38cef28c88864beaadac7a7cffdec6da952c3eb2 (diff) |
Notes
Diffstat (limited to 'subversion/libsvn_subr/pool.c')
-rw-r--r-- | subversion/libsvn_subr/pool.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/subversion/libsvn_subr/pool.c b/subversion/libsvn_subr/pool.c index 5fd80a7a83ccd..340c576db7a91 100644 --- a/subversion/libsvn_subr/pool.c +++ b/subversion/libsvn_subr/pool.c @@ -133,7 +133,7 @@ svn_pool_create_allocator(svn_boolean_t thread_safe) #endif /* By default, allocators are *not* thread-safe. We must provide a mutex - * if we want thread-safety for that mutex. */ + * if we want thread-safety for that pool. */ #if APR_HAS_THREADS if (thread_safe) @@ -151,16 +151,6 @@ svn_pool_create_allocator(svn_boolean_t thread_safe) } -/* - * apr_pool_create_core_ex was introduced in APR 1.3.0, then - * deprecated and renamed to apr_pool_create_unmanaged_ex in 1.3.3. - * Since our minimum requirement is APR 1.3.0, one or the other of - * these functions will always be available. - */ -#if !APR_VERSION_AT_LEAST(1,3,3) -#define apr_pool_create_unmanaged_ex apr_pool_create_core_ex -#endif - /* Private function that creates an unmanaged pool. */ apr_pool_t * svn_pool__create_unmanaged(svn_boolean_t thread_safe) |