diff options
author | Peter Wemm <peter@FreeBSD.org> | 2015-10-12 08:54:49 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2015-10-12 08:54:49 +0000 |
commit | dc5d469d6574e9fb03bdd793658bb371315b306a (patch) | |
tree | 013c2e6845398e5a9ca4901dcc077769c7520e1d /subversion/libsvn_subr/dso.c | |
parent | 58218291fa73a17020ef0447398e9e8a78f9e8c7 (diff) |
Notes
Diffstat (limited to 'subversion/libsvn_subr/dso.c')
-rw-r--r-- | subversion/libsvn_subr/dso.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/subversion/libsvn_subr/dso.c b/subversion/libsvn_subr/dso.c index 7cce2fd34560..46af5499ff51 100644 --- a/subversion/libsvn_subr/dso.c +++ b/subversion/libsvn_subr/dso.c @@ -29,6 +29,7 @@ #include "private/svn_mutex.h" #include "private/svn_atomic.h" +#include "private/svn_subr_private.h" /* A mutex to protect our global pool and cache. */ static svn_mutex__t *dso_mutex = NULL; @@ -123,4 +124,11 @@ svn_dso_load(apr_dso_handle_t **dso, const char *fname) return SVN_NO_ERROR; } + +apr_pool_t * +svn_dso__pool(void) +{ + return dso_pool; +} + #endif /* APR_HAS_DSO */ |