summaryrefslogtreecommitdiff
path: root/dso/aix
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-04-14 15:58:54 +0000
committerRyan Bloom <rbb@apache.org>2000-04-14 15:58:54 +0000
commitf6be29db115b28bf436f84e67e1ba49e92ab9538 (patch)
treec07dfce5f37b9ffae3b9b7b8b0b435fb98cdc74b /dso/aix
parent9baccbbbd719982aee0888ca35a3f7b98cc3792a (diff)
downloadapr-f6be29db115b28bf436f84e67e1ba49e92ab9538.tar.gz
Change ap_context_t to ap_pool_t. This compiles, runs, and serves pages
on Linux, but probably breaks somewhere. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59856 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso/aix')
-rw-r--r--dso/aix/dso.c2
-rw-r--r--dso/aix/dso.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/dso/aix/dso.c b/dso/aix/dso.c
index 0b99a29ab..d43c8fdd9 100644
--- a/dso/aix/dso.c
+++ b/dso/aix/dso.c
@@ -135,7 +135,7 @@ ap_status_t ap_dso_init(void){
}
ap_status_t ap_dso_load(ap_dso_handle_t **res_handle, const char *path,
- ap_context_t *ctx)
+ ap_pool_t *ctx)
{
void *os_handle = dlopen((char *)path, RTLD_NOW | RTLD_GLOBAL);
diff --git a/dso/aix/dso.h b/dso/aix/dso.h
index 89c33f5c0..ec6d5bf7a 100644
--- a/dso/aix/dso.h
+++ b/dso/aix/dso.h
@@ -66,7 +66,7 @@ const char *dlerror(void);
int dlclose(void *handle);
struct ap_dso_handle_t {
- ap_context_t *cont;
+ ap_pool_t *cont;
void *handle;
};