summaryrefslogtreecommitdiff
path: root/dso/aix
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2001-02-08 07:45:23 +0000
committerDoug MacEachern <dougm@apache.org>2001-02-08 07:45:23 +0000
commitbc1b73cb6002c158ead8d736f25eb70d5124ecda (patch)
tree136752321dd3e22c22463c9ab35a700ab0507729 /dso/aix
parent2d3db4e26d42b1fd65bb65bc17f247b0c78a25f6 (diff)
downloadapr-bc1b73cb6002c158ead8d736f25eb70d5124ecda.tar.gz
renaming various functions for consistency sake
see: http://apr.apache.org/~dougm/apr_rename.pl PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61194 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso/aix')
-rw-r--r--dso/aix/dso.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dso/aix/dso.c b/dso/aix/dso.c
index 1926180bb..4863107df 100644
--- a/dso/aix/dso.c
+++ b/dso/aix/dso.c
@@ -155,14 +155,14 @@ APR_DECLARE(apr_status_t) apr_dso_load(apr_dso_handle_t **res_handle,
(*res_handle)->handle = (void*)os_handle;
(*res_handle)->cont = ctx;
- apr_register_cleanup(ctx, *res_handle, dso_cleanup, apr_null_cleanup);
+ apr_pool_cleanup_register(ctx, *res_handle, dso_cleanup, apr_pool_cleanup_null);
return APR_SUCCESS;
}
APR_DECLARE(apr_status_t) apr_dso_unload(apr_dso_handle_t *handle)
{
- return apr_run_cleanup(handle->cont, handle, dso_cleanup);
+ return apr_pool_cleanup_run(handle->cont, handle, dso_cleanup);
}
APR_DECLARE(apr_status_t) apr_dso_sym(apr_dso_handle_sym_t *ressym,