summaryrefslogtreecommitdiff
path: root/mmap
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-04-14 15:58:54 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-04-14 15:58:54 +0000
commit00a9ca6dfcb4118e8b5fd850a29512b6350a64e0 (patch)
treec07dfce5f37b9ffae3b9b7b8b0b435fb98cdc74b /mmap
parentcf78e17a5bfa07c2801e0c9005e09496679db918 (diff)
downloadlibapr-00a9ca6dfcb4118e8b5fd850a29512b6350a64e0.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: http://svn.apache.org/repos/asf/apr/apr/trunk@59856 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'mmap')
-rw-r--r--mmap/beos/mmap.c2
-rw-r--r--mmap/beos/mmap_h.h2
-rw-r--r--mmap/unix/mmap.c2
-rw-r--r--mmap/unix/mmap_h.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/mmap/beos/mmap.c b/mmap/beos/mmap.c
index 6d56d39f3..f7d97c457 100644
--- a/mmap/beos/mmap.c
+++ b/mmap/beos/mmap.c
@@ -70,7 +70,7 @@ static ap_status_t mmap_cleanup(void *themmap)
}
ap_status_t ap_mmap_create(ap_mmap_t **new, ap_file_t *file, ap_off_t offset, ap_size_t size,
- ap_context_t *cont)
+ ap_pool_t *cont)
{
void *mm;
area_id aid = -1;
diff --git a/mmap/beos/mmap_h.h b/mmap/beos/mmap_h.h
index 7033c549f..898953771 100644
--- a/mmap/beos/mmap_h.h
+++ b/mmap/beos/mmap_h.h
@@ -69,7 +69,7 @@
#include <stdio.h>
struct ap_mmap_t {
- ap_context_t *cntxt;
+ ap_pool_t *cntxt;
area_id area;
void *mm;
size_t size;
diff --git a/mmap/unix/mmap.c b/mmap/unix/mmap.c
index c2c48869a..5e5b571f7 100644
--- a/mmap/unix/mmap.c
+++ b/mmap/unix/mmap.c
@@ -77,7 +77,7 @@ static ap_status_t mmap_cleanup(void *themmap)
}
ap_status_t ap_mmap_create(ap_mmap_t **new, ap_file_t *file, ap_off_t offset,
- ap_size_t size, ap_context_t *cont)
+ ap_size_t size, ap_pool_t *cont)
{
caddr_t mm;
diff --git a/mmap/unix/mmap_h.h b/mmap/unix/mmap_h.h
index 3a03ed08d..78c91330b 100644
--- a/mmap/unix/mmap_h.h
+++ b/mmap/unix/mmap_h.h
@@ -85,7 +85,7 @@
/* End System Headers */
struct ap_mmap_t {
- ap_context_t *cntxt;
+ ap_pool_t *cntxt;
void *mm;
size_t size;
};